12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #ifndef _SYS_POLL_H
- # error "Never use <bits/poll.h> directly; include <sys/poll.h> instead."
- #endif
- #define POLLIN 0x001
- #define POLLPRI 0x002
- #define POLLOUT 0x004
- #ifdef __USE_XOPEN
- # define POLLRDNORM 0x040
- # define POLLRDBAND 0x080
- # define POLLWRNORM POLLOUT
- # define POLLWRBAND 0x100
- #endif
- #define POLLERR 0x008
- #define POLLHUP 0x010
- #define POLLNVAL 0x020
|