diff options
| author | Tohava <tohava@tohava-laptop.(none)> | 2010-08-05 04:19:46 +0300 |
|---|---|---|
| committer | Tohava <tohava@tohava-laptop.(none)> | 2010-08-05 04:19:46 +0300 |
| commit | ce79b0e492f1583debbce3c8155da3536c684d9a (patch) | |
| tree | f5a2a22230510dd14901742a4904c576f62a8500 /src/lib/linux_os.rs | |
| parent | Added AST logging, and modified AST for consistent handling of alt stmts. (diff) | |
| parent | Thread argument-types down to internal_check_outer_lval in type.ml, in prepar... (diff) | |
| download | rust-ce79b0e492f1583debbce3c8155da3536c684d9a.tar.xz rust-ce79b0e492f1583debbce3c8155da3536c684d9a.zip | |
Merge branch 'master' of git://github.com/graydon/rust
Diffstat (limited to 'src/lib/linux_os.rs')
| -rw-r--r-- | src/lib/linux_os.rs | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/src/lib/linux_os.rs b/src/lib/linux_os.rs index a775a97a..3f096e99 100644 --- a/src/lib/linux_os.rs +++ b/src/lib/linux_os.rs @@ -3,7 +3,7 @@ import _vec.vbuf; native mod libc = "libc.so.6" { - fn open(sbuf s, int flags) -> int; + fn open(sbuf s, int flags, uint mode) -> int; fn read(int fd, vbuf buf, uint count) -> int; fn write(int fd, vbuf buf, uint count) -> int; fn close(int fd) -> int; @@ -17,3 +17,18 @@ native mod libc = "libc.so.6" { fn setenv(sbuf n, sbuf v, int overwrite) -> int; fn unsetenv(sbuf n) -> int; } + +mod libc_constants { + fn O_RDONLY() -> int { ret 0x0000; } + fn O_WRONLY() -> int { ret 0x0001; } + fn O_RDWR() -> int { ret 0x0002; } + fn O_APPEND() -> int { ret 0x0400; } + fn O_CREAT() -> int { ret 0x0040; } + fn O_EXCL() -> int { ret 0x0080; } + fn O_TRUNC() -> int { ret 0x0200; } + fn O_TEXT() -> int { ret 0x0000; } // nonexistent in linux libc + fn O_BINARY() -> int { ret 0x0000; } // nonexistent in linux libc + + fn S_IRUSR() -> uint { ret 0x0100u; } + fn S_IWUSR() -> uint { ret 0x0080u; } +} |