summaryrefslogtreecommitdiff
path: root/src/linux/epoll_wait.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/linux/epoll_wait.c')
-rw-r--r--src/linux/epoll_wait.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/linux/epoll_wait.c b/src/linux/epoll_wait.c
new file mode 100644
index 00000000..8a68ebdd
--- /dev/null
+++ b/src/linux/epoll_wait.c
@@ -0,0 +1,7 @@
+#include <sys/epoll.h>
+#include "syscall.h"
+
+int epoll_wait(int fd, struct epoll_event *ev, int cnt, int to)
+{
+ return syscall4(__NR_epoll_wait, fd, (long)ev, cnt, to);
+}