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:
parent
d68242ba2f
commit
05aa764402
1 changed files with 1 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue