libcosmos
Linux C++ System Programming Library
|
#include <poll.h>
#include "cosmos/BitMask.hxx"
Go to the source code of this file.
Typedefs | |
using | cosmos::PollEvents = BitMask<PollEvent> |
BitMask of PollEvent flags denoting the I/O status of a file. | |
Enumerations | |
enum class | cosmos::PollEvent : short { INPUT = POLLIN , PRIORITY = POLLPRI , OUTPUT = POLLOUT , READ_HANGUP = POLLRDHUP , ERROR = POLLERR , HANGUP = POLLHUP , INVALID = POLLNVAL , WRBAND = POLLWRBAND } |
Bitmask values used in the poll(2) API to describe I/O status. More... | |
Wrappers around data structures for I/O related facilities.
Definition in file types.hxx.
using cosmos::PollEvents = BitMask<PollEvent> |
|
strong |
Bitmask values used in the poll(2) API to describe I/O status.
libcosmos doesn't actively use this API currently, but the bitmask is used in some other contexts as well, like in the SigInfo data structure.
Definition at line 22 of file types.hxx.