Kernel: Define the POLLRDNORM alias for POLLIN

This flag is equivalent to POLLIN.
This commit is contained in:
Idan Horowitz 2021-12-02 01:25:04 +02:00 committed by Andreas Kling
parent 05aa764402
commit f2fef049e1
Notes: sideshowbarker 2024-07-17 23:10:04 +09:00

View file

@ -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