1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 06:37:43 +00:00

Kernel: Add support for the POLLWRBAND poll event

This commit is contained in:
Idan Horowitz 2021-12-02 01:26:08 +02:00 committed by Andreas Kling
parent f2fef049e1
commit 265764ff2f
3 changed files with 14 additions and 6 deletions

View file

@ -20,6 +20,7 @@ extern "C" {
#define POLLERR (1u << 3)
#define POLLHUP (1u << 4)
#define POLLNVAL (1u << 5)
#define POLLWRBAND (1u << 12)
#define POLLRDHUP (1u << 13)
struct pollfd {