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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef __ASM_MIPS_POLL_H
  2. #define __ASM_MIPS_POLL_H
  3. #define POLLIN 0x0001
  4. #define POLLPRI 0x0002
  5. #define POLLOUT 0x0004
  6. #define POLLERR 0x0008
  7. #define POLLHUP 0x0010
  8. #define POLLNVAL 0x0020
  9. #define POLLRDNORM 0x0040
  10. #define POLLRDBAND 0x0080
  11. #define POLLWRNORM POLLOUT
  12. #define POLLWRBAND 0x0100
  13. /* XXX This one seems to be more-or-less nonstandard.  */
  14. #define POLLMSG 0x0400
  15. struct pollfd {
  16. int fd;
  17. short events;
  18. short revents;
  19. };
  20. #endif /* __ASM_MIPS_POLL_H */