diff options
author | Davide Libenzi <davidel@xmailserver.org> | 2007-05-11 09:23:20 +0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-11 19:29:37 +0400 |
commit | fdb902b1225e1668315f38e96d2f439452c03a15 (patch) | |
tree | 6751950608a7635df899bc5f20184754342b94a6 /include/asm-x86_64 | |
parent | e1ad7468c77ddb94b0615d5f50fa255525fde0f0 (diff) | |
download | linux-fdb902b1225e1668315f38e96d2f439452c03a15.tar.xz |
signal/timer/event: eventfd wire up x86 arches
This patch wires the eventfd system call to the x86 architectures.
Signed-off-by: Davide Libenzi <davidel@xmailserver.org>
Cc: Michael Kerrisk <mtk-manpages@gmx.net>
Cc: 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 | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/asm-x86_64/unistd.h b/include/asm-x86_64/unistd.h index 3e273b044457..ae1ed05f2814 100644 --- a/include/asm-x86_64/unistd.h +++ b/include/asm-x86_64/unistd.h @@ -628,6 +628,8 @@ __SYSCALL(__NR_epoll_pwait, sys_epoll_pwait) __SYSCALL(__NR_signalfd, sys_signalfd) #define __NR_timerfd 282 __SYSCALL(__NR_timerfd, sys_timerfd) +#define __NR_eventfd 283 +__SYSCALL(__NR_eventfd, sys_eventfd) #ifndef __NO_STUBS #define __ARCH_WANT_OLD_READDIR |