mirror of
https://github.com/fluencelabs/musl
synced 2025-05-29 23:51:34 +00:00
8 lines
161 B
C
8 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);
|
||
|
}
|