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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef __PPC64_POLL_H
  2. #define __PPC64_POLL_H
  3. /*
  4.  * Copyright (C) 2001 PPC64 Team, IBM Corp
  5.  *
  6.  * This program is free software; you can redistribute it and/or
  7.  * modify it under the terms of the GNU General Public License
  8.  * as published by the Free Software Foundation; either version
  9.  * 2 of the License, or (at your option) any later version.
  10.  */
  11. #define POLLIN 0x0001
  12. #define POLLPRI 0x0002
  13. #define POLLOUT 0x0004
  14. #define POLLERR 0x0008
  15. #define POLLHUP 0x0010
  16. #define POLLNVAL 0x0020
  17. #define POLLRDNORM 0x0040
  18. #define POLLRDBAND 0x0080
  19. #define POLLWRNORM 0x0100
  20. #define POLLWRBAND 0x0200
  21. #define POLLMSG 0x0400
  22. struct pollfd {
  23. int fd;
  24. short events;
  25. short revents;
  26. };
  27. #endif /* __PPC64_POLL_H */