poll.h 355 B

1234567891011121314151617181920212223
  1. #ifndef _ASM_POLL_H
  2. #define _ASM_POLL_H
  3. #define POLLIN 1
  4. #define POLLPRI 2
  5. #define POLLOUT 4
  6. #define POLLERR 8
  7. #define POLLHUP 16
  8. #define POLLNVAL 32
  9. #define POLLRDNORM 64
  10. #define POLLWRNORM POLLOUT
  11. #define POLLRDBAND 128
  12. #define POLLWRBAND 256
  13. #define POLLMSG 0x0400
  14. struct pollfd {
  15. int fd;
  16. short events;
  17. short revents;
  18. };
  19. #endif