diff options
author | David 'Digit' Turner <digit@google.com> | 2010-09-27 17:33:08 +0200 |
---|---|---|
committer | David 'Digit' Turner <digit@google.com> | 2010-09-27 17:33:08 +0200 |
commit | 275cd48511daabe4591caa49c3ad0df34a6889ff (patch) | |
tree | 7fa40917d92ff25cbfe6e4f4d4cbe01bd9af588e /libc/include/sys/linux-syscalls.h | |
parent | b9e49ad56e5776ace7c6eab2e997d5b7acb16792 (diff) | |
download | bionic-275cd48511daabe4591caa49c3ad0df34a6889ff.zip bionic-275cd48511daabe4591caa49c3ad0df34a6889ff.tar.gz bionic-275cd48511daabe4591caa49c3ad0df34a6889ff.tar.bz2 |
libc: Add missing pipe2() declaration and implementation.
Change-Id: Iacb914bd6ac5adc60c5671e6fef680ede21f9b0c
Diffstat (limited to 'libc/include/sys/linux-syscalls.h')
-rw-r--r-- | libc/include/sys/linux-syscalls.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/libc/include/sys/linux-syscalls.h b/libc/include/sys/linux-syscalls.h index 9e2aa2f..6a7fc40 100644 --- a/libc/include/sys/linux-syscalls.h +++ b/libc/include/sys/linux-syscalls.h @@ -138,6 +138,7 @@ #define __NR_openat (__NR_SYSCALL_BASE + 322) #define __NR_madvise (__NR_SYSCALL_BASE + 220) #define __NR_mincore (__NR_SYSCALL_BASE + 219) +#define __NR_pipe2 (__NR_SYSCALL_BASE + 359) #define __NR_getdents64 (__NR_SYSCALL_BASE + 217) #define __NR_fstatfs64 (__NR_SYSCALL_BASE + 267) #define __NR_fstatat64 (__NR_SYSCALL_BASE + 327) @@ -194,6 +195,7 @@ #define __NR_openat (__NR_SYSCALL_BASE + 295) #define __NR_madvise (__NR_SYSCALL_BASE + 219) #define __NR_mincore (__NR_SYSCALL_BASE + 218) +#define __NR_pipe2 (__NR_SYSCALL_BASE + 331) #define __NR_getdents64 (__NR_SYSCALL_BASE + 220) #define __NR_fstatfs64 (__NR_SYSCALL_BASE + 269) #define __NR_fstatat64 (__NR_SYSCALL_BASE + 300) @@ -235,6 +237,7 @@ #define __NR_openat (__NR_SYSCALL_BASE + 295) #define __NR_madvise (__NR_SYSCALL_BASE + 219) #define __NR_mincore (__NR_SYSCALL_BASE + 218) +#define __NR_pipe2 (__NR_SYSCALL_BASE + 331) #define __NR_getdents64 (__NR_SYSCALL_BASE + 220) #define __NR_fstatfs64 (__NR_SYSCALL_BASE + 269) #define __NR_fstatat64 (__NR_SYSCALL_BASE + 300) @@ -270,8 +273,8 @@ #define __NR_socketcall (__NR_SYSCALL_BASE + 102) #define __NR_socketcall (__NR_SYSCALL_BASE + 102) #define __NR___socketcall (__NR_SYSCALL_BASE + 102) -#define __NR_ioprio_set (__NR_SYSCALL_BASE + 289) -#define __NR_ioprio_get (__NR_SYSCALL_BASE + 290) +#define __NR_ioprio_set (__NR_SYSCALL_BASE + 288) +#define __NR_ioprio_get (__NR_SYSCALL_BASE + 289) #define __NR_epoll_create (__NR_SYSCALL_BASE + 254) #define __NR_epoll_ctl (__NR_SYSCALL_BASE + 255) #define __NR_epoll_wait (__NR_SYSCALL_BASE + 256) |