5aaacba671f25f8b45a6e6ae7304567f7400ee1b
[musl] / src / linux / epoll_pwait.c
1 #include <sys/epoll.h>
2 #include "syscall.h"
3
4 int epoll_pwait(int fd, struct epoll_event *ev, int cnt, int to, const sigset_t *sigs)
5 {
6         return syscall6(__NR_epoll_pwait, fd, (long)ev, cnt, to, (long)sigs, 8);
7 }