|
Data Structures |
| union | apr_descriptor |
| struct | apr_pollfd_t |
Defines |
| #define | APR_POLLIN 0x001 |
| #define | APR_POLLPRI 0x002 |
| #define | APR_POLLOUT 0x004 |
| #define | APR_POLLERR 0x010 |
| #define | APR_POLLHUP 0x020 |
| #define | APR_POLLNVAL 0x040 |
| #define | APR_POLLSET_THREADSAFE 0x001 |
Typedefs |
| typedef apr_pollfd_t | apr_pollfd_t |
| typedef apr_pollset_t | apr_pollset_t |
Enumerations |
| enum | apr_datatype_e { APR_NO_DESC,
APR_POLL_SOCKET,
APR_POLL_FILE,
APR_POLL_LASTDESC
} |
Functions |
| apr_status_t | apr_pollset_create (apr_pollset_t **pollset, apr_uint32_t size, apr_pool_t *p, apr_uint32_t flags) |
| apr_status_t | apr_pollset_destroy (apr_pollset_t *pollset) |
| apr_status_t | apr_pollset_add (apr_pollset_t *pollset, const apr_pollfd_t *descriptor) |
| apr_status_t | apr_pollset_remove (apr_pollset_t *pollset, const apr_pollfd_t *descriptor) |
| apr_status_t | apr_pollset_poll (apr_pollset_t *pollset, apr_interval_time_t timeout, apr_int32_t *num, const apr_pollfd_t **descriptors) |
| apr_status_t | apr_poll (apr_pollfd_t *aprset, apr_int32_t numsock, apr_int32_t *nsds, apr_interval_time_t timeout) |