mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
Kernel: Define the POLLRDNORM alias for POLLIN
This flag is equivalent to POLLIN.
This commit is contained in:
parent
05aa764402
commit
f2fef049e1
Notes:
sideshowbarker
2024-07-17 23:10:04 +09:00
Author: https://github.com/IdanHo Commit: https://github.com/SerenityOS/serenity/commit/f2fef049e12 Pull-request: https://github.com/SerenityOS/serenity/pull/11152 Reviewed-by: https://github.com/awesomekling
1 changed files with 1 additions and 0 deletions
|
@ -13,6 +13,7 @@ extern "C" {
|
|||
#endif
|
||||
|
||||
#define POLLIN (1u << 0)
|
||||
#define POLLRDNORM POLLIN
|
||||
#define POLLPRI (1u << 1)
|
||||
#define POLLOUT (1u << 2)
|
||||
#define POLLWRNORM POLLOUT
|
||||
|
|
Loading…
Reference in a new issue