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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * This file is subject to the terms and conditions of the GNU General Public
  3.  * License.  See the file "COPYING" in the main directory of this archive
  4.  * for more details.
  5.  *
  6.  * Copyright (C) 1998, 1999 Ralf Baechle (ralf@gnu.org)
  7.  */
  8. #ifndef _ASM_POLL_H
  9. #define _ASM_POLL_H
  10. #define POLLIN 0x0001
  11. #define POLLPRI 0x0002
  12. #define POLLOUT 0x0004
  13. #define POLLERR 0x0008
  14. #define POLLHUP 0x0010
  15. #define POLLNVAL 0x0020
  16. #define POLLRDNORM 0x0040
  17. #define POLLRDBAND 0x0080
  18. #define POLLWRNORM POLLOUT
  19. #define POLLWRBAND 0x0100
  20. /* XXX This one seems to be more-or-less nonstandard.  */
  21. #define POLLMSG 0x0400
  22. struct pollfd {
  23. int fd;
  24. short events;
  25. short revents;
  26. };
  27. #endif /* _ASM_POLL_H */