diff options
author | Davide Libenzi <davidel@xmailserver.org> | 2007-05-10 22:23:20 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-11 08:29:37 -0700 |
commit | fdb902b1225e1668315f38e96d2f439452c03a15 (patch) | |
tree | 6751950608a7635df899bc5f20184754342b94a6 /include/asm-i386 | |
parent | e1ad7468c77ddb94b0615d5f50fa255525fde0f0 (diff) | |
download | linux-fdb902b1225e1668315f38e96d2f439452c03a15.tar.gz linux-fdb902b1225e1668315f38e96d2f439452c03a15.tar.bz2 linux-fdb902b1225e1668315f38e96d2f439452c03a15.zip |
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-i386')
-rw-r--r-- | include/asm-i386/unistd.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/asm-i386/unistd.h b/include/asm-i386/unistd.h index 1c8076a402e5..e84ace1ec8bf 100644 --- a/include/asm-i386/unistd.h +++ b/include/asm-i386/unistd.h @@ -328,10 +328,11 @@ #define __NR_utimensat 320 #define __NR_signalfd 321 #define __NR_timerfd 322 +#define __NR_eventfd 323 #ifdef __KERNEL__ -#define NR_syscalls 323 +#define NR_syscalls 324 #define __ARCH_WANT_IPC_PARSE_VERSION #define __ARCH_WANT_OLD_READDIR |