1 2 3 4 5 6
#include <syscall.h> int eventfd(unsigned int initval, int flags) { return syscall(eventfd2, initval, flags); }