Member Name | Description |
---|
POLLERR | An exceptional condition has occurred on the device or socket. This flag is always checked, even if not present in the Pollfd.events bitmask.
[Edit]
|
POLLHUP | The device or socket has been disconnected. This flag is always checked, even if not present in the Pollfd.events bitmask. Note that POLLHUP and POLLOUT should never be present in the Pollfd.revents bitmask at the same time.
[Edit]
|
POLLIN | Data other than high priority data may be read without blocking.
[Edit]
|
POLLNVAL | The file descriptor is not open. This flag is always checked, even if not present in the Pollfd.events bitmask.
[Edit]
|
POLLOUT |
[Edit]
|
POLLPRI | High priority data may be read without blocking.
[Edit]
|
POLLRDBAND | Data with a non-zero priority may be read without blocking.
[Edit]
|
POLLRDNORM | Normal data may be written without blocking.
[Edit]
|
POLLWRBAND | Data with a non-zero priority may be written without blocking
[Edit]
|
POLLWRNORM | Normal data may be written without blocking.
[Edit]
|