summaryrefslogtreecommitdiff
path: root/src/linux/eventfd.c
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2011-05-08 00:03:00 -0400
committerRich Felker <dalias@aerifal.cx>2011-05-08 00:03:00 -0400
commit15b77d52c950c375514d2e8152e7112fd018e20e (patch)
tree709fcb0df148377a18251baa51348127c82ab6c6 /src/linux/eventfd.c
parent11e4b92556a02f43b500e6815690354b0f710843 (diff)
downloadmusl-15b77d52c950c375514d2e8152e7112fd018e20e.tar.gz
eventfd syscall wrapper and read/write wrappers
Diffstat (limited to 'src/linux/eventfd.c')
-rw-r--r--src/linux/eventfd.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/linux/eventfd.c b/src/linux/eventfd.c
new file mode 100644
index 00000000..cb39a7ba
--- /dev/null
+++ b/src/linux/eventfd.c
@@ -0,0 +1,7 @@
+#include <sys/eventfd.h>
+#include "syscall.h"
+
+int eventfd(unsigned int count, int flags)
+{
+ return syscall(flags ? SYS_eventfd2 : SYS_eventfd, count, flags);
+}