summaryrefslogtreecommitdiff
path: root/sysdeps
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2008-10-31 17:41:36 +0000
committerUlrich Drepper <drepper@redhat.com>2008-10-31 17:41:36 +0000
commit45a8beb51c60506cda9d9fdeee05c21476dca0b0 (patch)
tree02063c025d0284a797ca71f8f6fa1e8ee8cd4fcf /sysdeps
parentad12e63582e400495c26df747c597fe2359cccc2 (diff)
2008-10-02 Pierre Habouzit <madcoder@debian.org>
* sysdeps/unix/sysv/linux/eventfd.c (eventfd): Use the eventfd2 syscall and fix its calling convention.
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/unix/sysv/linux/eventfd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/eventfd.c b/sysdeps/unix/sysv/linux/eventfd.c
index 6ebfed86f1..4cd557983e 100644
--- a/sysdeps/unix/sysv/linux/eventfd.c
+++ b/sysdeps/unix/sysv/linux/eventfd.c
@@ -24,8 +24,8 @@
int
eventfd (int count, int flags)
{
-#ifdef __NR_eventfd1
- return INLINE_SYSCALL (eventfd1, 1, flags);
+#ifdef __NR_eventfd2
+ return INLINE_SYSCALL (eventfd2, 2, count, flags);
#else
/* The old system call has no flag parameter which is bad. So we have
to wait until we have to support to pass additional values to the