diff options
Diffstat (limited to 'src/linux/eventfd_write.c')
-rw-r--r-- | src/linux/eventfd_write.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/linux/eventfd_write.c b/src/linux/eventfd_write.c new file mode 100644 index 00000000..734fa367 --- /dev/null +++ b/src/linux/eventfd_write.c @@ -0,0 +1,7 @@ +#include <sys/eventfd.h> +#include <unistd.h> + +int eventfd_write(int fd, eventfd_t value) +{ + return (sizeof(value) == write(fd, &value, sizeof(value))) ? 0 : -1; +} |