15b77d52
1 2 3 4 5 6 7
#include <sys/eventfd.h> #include "syscall.h" int eventfd(unsigned int count, int flags) { return syscall(flags ? SYS_eventfd2 : SYS_eventfd, count, flags); }