poll.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _ASM_IA64_POLL_H
  2. #define _ASM_IA64_POLL_H
  3. /*
  4.  * poll(2) bit definitions.  Chosen to be compatible with Linux/x86.
  5.  *
  6.  * Copyright (C) 1998, 1999 Hewlett-Packard Co
  7.  * Copyright (C) 1998, 1999 David Mosberger-Tang <davidm@hpl.hp.com>
  8.  */
  9. #define POLLIN 0x0001
  10. #define POLLPRI 0x0002
  11. #define POLLOUT 0x0004
  12. #define POLLERR 0x0008
  13. #define POLLHUP 0x0010
  14. #define POLLNVAL 0x0020
  15. #define POLLRDNORM 0x0040
  16. #define POLLRDBAND 0x0080
  17. #define POLLWRNORM 0x0100
  18. #define POLLWRBAND 0x0200
  19. #define POLLMSG 0x0400
  20. struct pollfd {
  21. int fd;
  22. short events;
  23. short revents;
  24. };
  25. #endif /* _ASM_IA64_POLL_H */