poll.h 381 B

1234567891011121314151617181920212223
  1. #ifndef __SPARC_POLL_H
  2. #define __SPARC_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 512
  14. #define POLLREMOVE 1024
  15. struct pollfd {
  16. int fd;
  17. short events;
  18. short revents;
  19. };
  20. #endif