poll.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:0k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.poll.h 1.5 05/17/01 18:14:25 cort
  3.  */
  4. #ifndef __PPC_POLL_H
  5. #define __PPC_POLL_H
  6. #define POLLIN 0x0001
  7. #define POLLPRI 0x0002
  8. #define POLLOUT 0x0004
  9. #define POLLERR 0x0008
  10. #define POLLHUP 0x0010
  11. #define POLLNVAL 0x0020
  12. #define POLLRDNORM 0x0040
  13. #define POLLRDBAND 0x0080
  14. #define POLLWRNORM 0x0100
  15. #define POLLWRBAND 0x0200
  16. #define POLLMSG 0x0400
  17. struct pollfd {
  18. int fd;
  19. short events;
  20. short revents;
  21. };
  22. #endif