1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 12:38:12 +00:00

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

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)