diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-11-19 17:01:56 +0100 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-11-19 17:01:56 +0100 |
commit | 89489358b110afe47fb4f22bbb4d20b8022ff36c (patch) | |
tree | 4ddda673a21b3dc0901cb82f22ac625174ffabd7 /system | |
parent | 8dae54e14774f11e590bdb69579108923045bc80 (diff) |
fcntl additions
Diffstat (limited to 'system')
-rw-r--r-- | system/include/libc/sys/_default_fcntl.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/system/include/libc/sys/_default_fcntl.h b/system/include/libc/sys/_default_fcntl.h index 188e25c4..379147ed 100644 --- a/system/include/libc/sys/_default_fcntl.h +++ b/system/include/libc/sys/_default_fcntl.h @@ -207,6 +207,8 @@ extern int _open64 _PARAMS ((const char *, int, ...)); /* XXX Emscripten */ #define POSIX_FADV_DONTNEED 135 +#define POSIX_FADV_SEQUENTIAL 136 +#define POSIX_FADV_RANDOM 137 int posix_fadvise(int fd, off_t offset, off_t len, int advice); int posix_fallocate(int fd, off_t offset, off_t len); #define LOCK_SH 1 |