summaryrefslogtreecommitdiff
path: root/src/linux/epoll_pwait.c
blob: 39ad5b77c25379bbd50c493f7ba1c14d6a0c976e (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 syscall(SYS_epoll_pwait, fd, ev, cnt, to, sigs, 8);
}