poll.h 360 B

12345678910111213141516171819202122
  1. #ifndef __H8300_POLL_H
  2. #define __H8300_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