1234567891011121314151617181920212223242526272829 |
- #ifndef _SYS_EPOLL_H
- # error "Never use <bits/epoll.h> directly; include <sys/epoll.h> instead."
- #endif
- enum
- {
- EPOLL_CLOEXEC = 02000000,
- #define EPOLL_CLOEXEC EPOLL_CLOEXEC
- EPOLL_NONBLOCK = 00004000
- #define EPOLL_NONBLOCK EPOLL_NONBLOCK
- };
|