diff options
| author | Andreas Schneider <asn@samba.org> | 2014-10-01 12:51:56 +0200 |
|---|---|---|
| committer | Andreas Schneider <asn@samba.org> | 2014-10-01 14:06:33 +0200 |
| commit | b6e69a39dd211626159865f1ece4989c7552a9ee (patch) | |
| tree | 7bc498f8d857a2fb0d849156e97e842fd91e4560 /src | |
| parent | 362136b89adedbf112beb354e31b0e9b763db37f (diff) | |
| download | socket_wrapper-b6e69a39dd211626159865f1ece4989c7552a9ee.tar.gz socket_wrapper-b6e69a39dd211626159865f1ece4989c7552a9ee.tar.xz socket_wrapper-b6e69a39dd211626159865f1ece4989c7552a9ee.zip | |
swrap: Add support for eventfd with unsigned count variable.
The prototype in glibc 2.20.90 changed.
Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'src')
| -rw-r--r-- | src/socket_wrapper.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/socket_wrapper.c b/src/socket_wrapper.c index 6a495b9..d5c343d 100644 --- a/src/socket_wrapper.c +++ b/src/socket_wrapper.c @@ -5024,7 +5024,11 @@ static int swrap_eventfd(int count, int flags) return fd; } +#ifdef HAVE_EVENTFD_UNSIGNED_INT +int eventfd(unsigned int count, int flags) +#else int eventfd(int count, int flags) +#endif { return swrap_eventfd(count, flags); } |
