diff options
author | Andi Kleen <ak@suse.de> | 2007-05-10 22:22:18 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-11 08:29:32 -0700 |
commit | 9393e1dc8e394bd59217178b26b2476dc43e8667 (patch) | |
tree | 9b6274f4657b09a9d4bd76719b93022c844d4963 /include/asm-x86_64 | |
parent | 32993b793fb07784fd1380004f5b34f31f9105d5 (diff) | |
download | linux-3.10-9393e1dc8e394bd59217178b26b2476dc43e8667.tar.gz linux-3.10-9393e1dc8e394bd59217178b26b2476dc43e8667.tar.bz2 linux-3.10-9393e1dc8e394bd59217178b26b2476dc43e8667.zip |
x86_64: new syscall
Add epoll_pwait()
(akpm: stolen from Andi's queue, because I want to send the signalfd patches
which also add syscalls. Not sure what the __IGNORE_getcpu is for).
Signed-off-by: Andi Kleen <ak@suse.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/asm-x86_64')
-rw-r--r-- | include/asm-x86_64/unistd.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/asm-x86_64/unistd.h b/include/asm-x86_64/unistd.h index 595703949df..18a0b01c804 100644 --- a/include/asm-x86_64/unistd.h +++ b/include/asm-x86_64/unistd.h @@ -621,6 +621,9 @@ __SYSCALL(__NR_vmsplice, sys_vmsplice) __SYSCALL(__NR_move_pages, sys_move_pages) #define __NR_utimensat 280 __SYSCALL(__NR_utimensat, sys_utimensat) +#define __IGNORE_getcpu /* implemented as a vsyscall */ +#define __NR_epoll_pwait 281 +__SYSCALL(__NR_epoll_pwait, sys_epoll_pwait) #ifndef __NO_STUBS #define __ARCH_WANT_OLD_READDIR |