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

int epoll_create1(int flags)
{
	return syscall(SYS_epoll_create1, flags);
}