mirror of https://git.musl-libc.org/git/musl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
531 B
23 lines
531 B
#include <sys/eventfd.h>
|
|
#include <unistd.h>
|
|
#include <errno.h>
|
|
#include "syscall.h"
|
|
|
|
int eventfd(unsigned int count, int flags)
|
|
{
|
|
int r = __syscall(SYS_eventfd2, count, flags);
|
|
#ifdef SYS_eventfd
|
|
if (r==-ENOSYS && !flags) r = __syscall(SYS_eventfd, count);
|
|
#endif
|
|
return __syscall_ret(r);
|
|
}
|
|
|
|
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;
|
|
}
|
|
|