epoll_wait.c 171 B

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