Populate tree.

This commit is contained in:
Graydon Hoare
2010-06-23 21:03:09 -07:00
parent c01efc669f
commit d6b7c96c3e
248 changed files with 52689 additions and 182 deletions

19
src/lib/linux_os.rs Normal file
View File

@@ -0,0 +1,19 @@
import _str.sbuf;
import _vec.vbuf;
native mod libc = "libc.so.6" {
fn open(sbuf s, int flags) -> int;
fn read(int fd, vbuf buf, uint count) -> int;
fn write(int fd, vbuf buf, uint count) -> int;
fn close(int fd) -> int;
type dir;
// readdir is a mess; handle via wrapper function in rustrt.
fn opendir(sbuf d) -> dir;
fn closedir(dir d) -> int;
fn getenv(sbuf n) -> sbuf;
fn setenv(sbuf n, sbuf v, int overwrite) -> int;
fn unsetenv(sbuf n) -> int;
}