From 45a8beb51c60506cda9d9fdeee05c21476dca0b0 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Fri, 31 Oct 2008 17:41:36 +0000 Subject: [PATCH] 2008-10-02 Pierre Habouzit * sysdeps/unix/sysv/linux/eventfd.c (eventfd): Use the eventfd2 syscall and fix its calling convention. --- ChangeLog | 5 +++++ sysdeps/unix/sysv/linux/eventfd.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index b4775de..cd2f6ed 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-10-02 Pierre Habouzit + + * sysdeps/unix/sysv/linux/eventfd.c (eventfd): Use the eventfd2 syscall + and fix its calling convention. + 2008-10-07 Andreas Schwab [BZ #6942] diff --git a/sysdeps/unix/sysv/linux/eventfd.c b/sysdeps/unix/sysv/linux/eventfd.c index 6ebfed8..4cd5579 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 -- 2.7.4