1234567891011121314151617181920212223242526272829 |
- #ifndef _SYS_TIMERFD_H
- # error "Never use <bits/timerfd.h> directly; include <sys/timerfd.h> instead."
- #endif
- enum
- {
- TFD_CLOEXEC = 02000000,
- #define TFD_CLOEXEC TFD_CLOEXEC
- TFD_NONBLOCK = 00000200
- #define TFD_NONBLOCK TFD_NONBLOCK
- };
|