From 257323e525f0cc2774bea4823b3518d0dce87142 Mon Sep 17 00:00:00 2001 From: Markos Chandras Date: Thu, 11 Oct 2012 10:12:24 +0100 Subject: epoll: Use epoll_create1 if arch does not have the epoll_create syscall Signed-off-by: Markos Chandras Signed-off-by: Bernhard Reutner-Fischer --- libc/sysdeps/linux/common/epoll.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'libc/sysdeps/linux/common/epoll.c') diff --git a/libc/sysdeps/linux/common/epoll.c b/libc/sysdeps/linux/common/epoll.c index 29b4600d1..b7366262a 100644 --- a/libc/sysdeps/linux/common/epoll.c +++ b/libc/sysdeps/linux/common/epoll.c @@ -19,6 +19,14 @@ _syscall1(int, epoll_create, int, size) _syscall1(int, epoll_create1, int, flags) #endif +#if defined __NR_epoll_create1 && !defined __NR_epoll_create +int epoll_create(int size) +{ + return INLINE_SYSCALL(epoll_create1, 1, 0); +} + +#endif + #ifdef __NR_epoll_ctl _syscall4(int, epoll_ctl, int, epfd, int, op, int, fd, struct epoll_event *, event) #endif -- cgit v1.2.3