mirror of
https://github.com/fluencelabs/musl
synced 2025-06-28 06:02:04 +00:00
fix eventfd and inotify nonblock/cloexec flags to match arch values
This commit is contained in:
@ -6,12 +6,13 @@ extern "C" {
|
||||
#endif
|
||||
|
||||
#include <stdint.h>
|
||||
#include <fcntl.h>
|
||||
|
||||
typedef uint64_t eventfd_t;
|
||||
|
||||
#define EFD_SEMAPHORE 1
|
||||
#define EFD_CLOEXEC 02000000
|
||||
#define EFD_NONBLOCK 04000
|
||||
#define EFD_CLOEXEC O_CLOEXEC
|
||||
#define EFD_NONBLOCK O_NONBLOCK
|
||||
|
||||
int eventfd(unsigned int, int);
|
||||
int eventfd_read(int, eventfd_t *);
|
||||
|
Reference in New Issue
Block a user