12345678910111213141516171819202122232425262728293031 |
- #ifndef _SYS_EVENTFD_H
- # error "Never use <bits/eventfd.h> directly; include <sys/eventfd.h> instead."
- #endif
- enum
- {
- EFD_SEMAPHORE = 00000001,
- #define EFD_SEMAPHORE EFD_SEMAPHORE
- EFD_CLOEXEC = 02000000,
- #define EFD_CLOEXEC EFD_CLOEXEC
- EFD_NONBLOCK = 00000200
- #define EFD_NONBLOCK EFD_NONBLOCK
- };
|