libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
types.hxx
Go to the documentation of this file.
1#pragma once
2
3// Linux
4#include <poll.h>
5
6// cosmos
7#include "cosmos/BitMask.hxx"
8
15namespace cosmos {
16
18
22enum class PollEvent : short {
23 INPUT = POLLIN,
24 PRIORITY = POLLPRI,
25 OUTPUT = POLLOUT,
26 READ_HANGUP = POLLRDHUP,
27 ERROR = POLLERR,
28 HANGUP = POLLHUP,
29 INVALID = POLLNVAL,
30 WRBAND = POLLWRBAND,
31};
32
35
36} // end ns
PollEvent
Bitmask values used in the poll(2) API to describe I/O status.
Definition types.hxx:22
@ OUTPUT
writing is possible.
@ READ_HANGUP
stream socket peer closed connection, or shut down the writing half of its connection.
@ WRBAND
priority data may be written.
@ INPUT
there is data to read.
@ ERROR
an error condition exists (also occurs on the write end of a pipe, when the read end has been closed)...
@ PRIORITY
an exceptional condition exists: out-of-band data on TCP socket, PTY master has seen a state change o...