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