summaryrefslogtreecommitdiff
path: root/src/linux/epoll_pwait.c
blob: 3ecdbb59d7896bb8d6c4f2816cd137bd433aad1e (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, __SYSCALL_SSLEN);
}