[git commit] wrapsyscall.c: include proper header for epoll

Bernhard Reutner-Fischer rep.dot.nop at gmail.com
Fri Jun 15 12:00:31 UTC 2012


commit: http://git.uclibc.org/uClibc/commit/?id=47adeb6a1c9f33bbde7598d6cb2f5c5c37afdc71
branch: http://git.uclibc.org/uClibc/commit/?id=refs/heads/master

Signed-off-by: Peter S. Mazinger <ps.m at gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop at gmail.com>
---
 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 469930f..e419e54 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))


More information about the uClibc-cvs mailing list