diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2012-04-23 17:58:42 +0200 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2012-06-15 14:00:31 +0200 |
commit | 47adeb6a1c9f33bbde7598d6cb2f5c5c37afdc71 (patch) | |
tree | da1537db13ec3fa4b4f01af8f6090d70f5ac87de /libpthread/linuxthreads.old/wrapsyscall.c | |
parent | 64572a51b051dc71ec12020c7a8fdae95d6cb69e (diff) |
wrapsyscall.c: include proper header for epoll
Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libpthread/linuxthreads.old/wrapsyscall.c')
-rw-r--r-- | libpthread/linuxthreads.old/wrapsyscall.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpthread/linuxthreads.old/wrapsyscall.c b/libpthread/linuxthreads.old/wrapsyscall.c index 469930f9e..e419e54f0 100644 --- a/libpthread/linuxthreads.old/wrapsyscall.c +++ b/libpthread/linuxthreads.old/wrapsyscall.c @@ -228,12 +228,12 @@ CANCELABLE_SYSCALL (ssize_t, sendto, (int fd, const __ptr_t buf, size_t n, #endif /* __UCLIBC_HAS_SOCKET__ */ #ifdef __UCLIBC_HAS_EPOLL__ +# include <sys/epoll.h> # ifdef __NR_epoll_wait CANCELABLE_SYSCALL (int, epoll_wait, (int epfd, struct epoll_event *events, int maxevents, int timeout), (epfd, events, maxevents, timeout)) # endif # ifdef __NR_epoll_pwait -# include <signal.h> CANCELABLE_SYSCALL (int, epoll_pwait, (int epfd, struct epoll_event *events, int maxevents, int timeout, const sigset_t *set), (epfd, events, maxevents, timeout, set)) |