mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-10 18:10:56 +09:00
Kernel: Add support for the POLLWRBAND poll event
This commit is contained in:
parent
f2fef049e1
commit
265764ff2f
Notes:
sideshowbarker
2024-07-17 23:10:00 +09:00
Author: https://github.com/IdanHo
Commit: 265764ff2f
Pull-request: https://github.com/SerenityOS/serenity/pull/11152
Reviewed-by: https://github.com/awesomekling
3 changed files with 14 additions and 6 deletions
|
@ -588,15 +588,16 @@ public:
|
|||
Read = 1 << 0,
|
||||
Write = 1 << 1,
|
||||
ReadPriority = 1 << 2,
|
||||
WritePriority = 1 << 3,
|
||||
|
||||
Accept = 1 << 3,
|
||||
Connect = 1 << 4,
|
||||
Accept = 1 << 4,
|
||||
Connect = 1 << 5,
|
||||
SocketFlags = Accept | Connect,
|
||||
|
||||
WriteNotOpen = 1 << 5,
|
||||
WriteError = 1 << 6,
|
||||
WriteHangUp = 1 << 7,
|
||||
ReadHangUp = 1 << 8,
|
||||
WriteNotOpen = 1 << 6,
|
||||
WriteError = 1 << 7,
|
||||
WriteHangUp = 1 << 8,
|
||||
ReadHangUp = 1 << 9,
|
||||
Exception = WriteNotOpen | WriteError | WriteHangUp | ReadHangUp,
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue