123456789101112131415161718192021222324252627282930 |
- #ifndef _SYS_EVENTFD_H
- # error "Never use <bits/eventfd.h> directly; include <sys/eventfd.h> instead."
- #endif
- enum
- {
- EFD_SEMAPHORE = 0x000001,
- #define EFD_SEMAPHORE EFD_SEMAPHORE
- EFD_CLOEXEC = 0x400000,
- #define EFD_CLOEXEC EFD_CLOEXEC
- EFD_NONBLOCK = 0x004000
- #define EFD_NONBLOCK EFD_NONBLOCK
- };
|