diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/fcntl/posix_fadvise.c | 8 | ||||
-rw-r--r-- | src/fcntl/posix_fallocate.c | 8 |
2 files changed, 16 insertions, 0 deletions
diff --git a/src/fcntl/posix_fadvise.c b/src/fcntl/posix_fadvise.c new file mode 100644 index 00000000..75edafaf --- /dev/null +++ b/src/fcntl/posix_fadvise.c @@ -0,0 +1,8 @@ +#include <fcntl.h> +#include "syscall.h" + +int posix_fadvise(int fd, off_t base, off_t len, int advice) +{ + return -__syscall(SYS_fadvise, fd, __SYSCALL_LL(base), + __SYSCALL_LL(len), advice); +} diff --git a/src/fcntl/posix_fallocate.c b/src/fcntl/posix_fallocate.c new file mode 100644 index 00000000..d6680c14 --- /dev/null +++ b/src/fcntl/posix_fallocate.c @@ -0,0 +1,8 @@ +#include <fcntl.h> +#include "syscall.h" + +int posix_fallocate(int fd, off_t base, off_t len) +{ + return -__syscall(SYS_fallocate, fd, __SYSCALL_LL(base), + __SYSCALL_LL(len)); +} |