diff options
author | Idan Horowitz <idan.horowitz@gmail.com> | 2021-12-02 01:26:08 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-12-05 12:53:29 +0100 |
commit | 265764ff2fec038855193296588a887fc322d76a (patch) | |
tree | 3754a112d175d28c13a887202ce1596443f04c87 /Kernel/API | |
parent | f2fef049e12f0e8697f5d241d7b16d3b269e798c (diff) | |
download | serenity-265764ff2fec038855193296588a887fc322d76a.zip |
Kernel: Add support for the POLLWRBAND poll event
Diffstat (limited to 'Kernel/API')
-rw-r--r-- | Kernel/API/POSIX/poll.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Kernel/API/POSIX/poll.h b/Kernel/API/POSIX/poll.h index b5bd1d7d8c..c481ab61c7 100644 --- a/Kernel/API/POSIX/poll.h +++ b/Kernel/API/POSIX/poll.h @@ -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 { |