1
0

eventfd.c 161 B

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