debloat src/thread tree but putting lots of junk in one file
[oweals/musl.git] / src / linux / eventfd.c
index cb39a7bab7b4d8e871c08c6871c8105b2af59209..530664874f6988caced5c29d61052f34420d5df9 100644 (file)
@@ -1,7 +1,18 @@
 #include <sys/eventfd.h>
+#include <unistd.h>
 #include "syscall.h"
 
 int eventfd(unsigned int count, int flags)
 {
        return syscall(flags ? SYS_eventfd2 : SYS_eventfd, count, flags);
 }
+
+int eventfd_read(int fd, eventfd_t *value)
+{
+       return (sizeof(*value) == read(fd, value, sizeof(*value))) ? 0 : -1;
+}
+
+int eventfd_write(int fd, eventfd_t value)
+{
+       return (sizeof(value) == write(fd, &value, sizeof(value))) ? 0 : -1;
+}