mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +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
Notes:
sideshowbarker
2024-07-18 05:37:06 +09:00
Author: https://github.com/IdanHo Commit: https://github.com/SerenityOS/serenity/commit/05aa764402b Pull-request: https://github.com/SerenityOS/serenity/pull/11152 Reviewed-by: https://github.com/awesomekling
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…
Reference in a new issue