gwpoll.h
上传用户:gzpyjq
上传日期:2013-01-31
资源大小:1852k
文件大小:2k
源码类别:

手机WAP编程

开发平台:

WINDOWS

  1. /* gwpoll.h - define poll() for systems that don't have it */
  2. #ifndef GWPOLL_H
  3. #define GWPOLL_H
  4. /* If the system supplies it, we're done.  Assume that if the header file
  5.  * exists, it will define poll() and struct pollfd for us. */
  6. #ifdef HAVE_SYS_POLL_H
  7. #include <sys/poll.h>
  8. /* Most systems accept any negative timeout value as meaning infinite
  9.  * timeout.  FreeBSD explicitly wants INFTIM, however.  Other systems
  10.  * don't define INFTIM.  So we use it if it's defined, and -1 otherwise.
  11.  */
  12. #ifdef INFTIM
  13. #define POLL_NOTIMEOUT INFTIM
  14. #else
  15. #define POLL_NOTIMEOUT (-1)
  16. #endif
  17. #else
  18. /* Define struct pollfd and the event bits, and declare a function poll()
  19.  * that uses them and is a wrapper around select(). */
  20. struct pollfd {
  21.     int fd;    /* file descriptor */
  22.     short events;  /* requested events */
  23.     short revents; /* returned events */
  24. };
  25. /* Bits for events and revents */
  26. #define POLLIN   1    /* Reading will not block */
  27. #define POLLPRI  2    /* Urgent data available for reading */
  28. #define POLLOUT  4    /* Writing will not block */
  29. /* Bits only used in revents */
  30. #define POLLERR  8    /* Error condition */
  31. #define POLLHUP  16   /* Hung up: fd was closed by other side */
  32. #define POLLNVAL 32   /* Invalid: fd not open or not valid */
  33. #define POLL_NOTIMEOUT (-1)
  34. /* Implement the function as gw_poll, in case the system does have a poll()
  35.  * function in its libraries but just fails to define it in sys/poll.h. */
  36. #define poll(fdarray, numfds, timeout) gw_poll(fdarray, numfds, timeout)
  37. int gw_poll(struct pollfd *fdarray, unsigned int numfds, int timeout);
  38. #endif  /* !HAVE_SYS_POLL_H */
  39. #endif