Kernel: Define the POLLWRNORM alias for POLLOUT

This is defined by posix to be equivalent to POLLOUT
This commit is contained in:
Idan Horowitz 2021-12-02 01:13:11 +02:00 committed by Andreas Kling
parent d68242ba2f
commit 05aa764402
Notes: sideshowbarker 2024-07-18 05:37:06 +09:00

View file

@ -15,6 +15,7 @@ extern "C" {
#define POLLIN (1u << 0)
#define POLLPRI (1u << 1)
#define POLLOUT (1u << 2)
#define POLLWRNORM POLLOUT
#define POLLERR (1u << 3)
#define POLLHUP (1u << 4)
#define POLLNVAL (1u << 5)