7 lines
161 B
C
7 lines
161 B
C
#include <sys/eventfd.h>
|
|
#include "syscall.h"
|
|
|
|
int eventfd(unsigned int count, int flags)
|
|
{
|
|
return syscall(flags ? SYS_eventfd2 : SYS_eventfd, count, flags);
|
|
}
|