diff options
Diffstat (limited to 'src/linux/epoll_ctl.c')
-rw-r--r-- | src/linux/epoll_ctl.c | 7 |
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 0000000..4214f40 --- /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); +} |