epoll_ctl.c 169 B

1234567
  1. #include <sys/epoll.h>
  2. #include "syscall.h"
  3. int epoll_ctl(int fd, int op, int fd2, struct epoll_event *ev)
  4. {
  5. return syscall4(__NR_epoll_ctl, fd, op, fd2, (long)ev);
  6. }