Go to the documentation of this file.
24 #include <sys/cdefs.h>
25 #include <sys/types.h>
48 #define POLLRDNORM (1 << 0)
49 #define POLLRDBAND (1 << 1)
50 #define POLLPRI (1 << 2)
51 #define POLLOUT (1 << 3)
52 #define POLLWRNORM POLLOUT
53 #define POLLWRBAND (1 << 4)
54 #define POLLERR (1 << 5)
55 #define POLLHUP (1 << 6)
56 #define POLLNVAL (1 << 7)
59 #define POLLIN (POLLRDNORM | POLLRDBAND)