Sign in
kernel
/
pub
/
scm
/
virt
/
qemu
/
amit
/
virtio-rng
/
refs/heads/stable-0.14
/
.
/
compat
/
sys
/
eventfd.h
blob: f55d96adb20d3c4dd4bd2f67eb68f84aee9e85bd [
file
] [
log
] [
blame
]
#ifndef
_COMPAT_SYS_EVENTFD
#define
_COMPAT_SYS_EVENTFD
#include
<unistd.h>
#include
<syscall.h>
static
inline
int
eventfd
(
int
count
,
int
flags
)
{
return
syscall
(
SYS_eventfd
,
count
,
flags
);
}
#endif