summaryrefslogtreecommitdiff
path: root/src/linux/epoll_pwait.c
blob: 5aaacba671f25f8b45a6e6ae7304567f7400ee1b (plain) (blame)
1
2
3
4
5
6
7
#include <sys/epoll.h>
#include "syscall.h"

int epoll_pwait(int fd, struct epoll_event *ev, int cnt, int to, const sigset_t *sigs)
{
	return syscall6(__NR_epoll_pwait, fd, (long)ev, cnt, to, (long)sigs, 8);
}