Skip to content

Commit

Permalink
x86_64: Fix eventd/timerfd syscalls
Browse files Browse the repository at this point in the history
They had the same syscall number.

Pointed out by Davide Libenzi

Signed-off-by: Andi Kleen <ak@suse.de>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Andi Kleen authored and Linus Torvalds committed Jun 20, 2007
1 parent e412ac4 commit 0b62233
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/asm-x86_64/unistd.h
Original file line number Diff line number Diff line change
Expand Up @@ -626,9 +626,9 @@ __SYSCALL(__NR_utimensat, sys_utimensat)
__SYSCALL(__NR_epoll_pwait, sys_epoll_pwait)
#define __NR_signalfd 282
__SYSCALL(__NR_signalfd, sys_signalfd)
#define __NR_timerfd 282
#define __NR_timerfd 283
__SYSCALL(__NR_timerfd, sys_timerfd)
#define __NR_eventfd 283
#define __NR_eventfd 284
__SYSCALL(__NR_eventfd, sys_eventfd)

#ifndef __NO_STUBS
Expand Down

0 comments on commit 0b62233

Please sign in to comment.