1
0
Fork 0
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:
Idan Horowitz 2021-12-02 01:26:08 +02:00 committed by Andreas Kling
parent f2fef049e1
commit 265764ff2f
Notes: sideshowbarker 2024-07-17 23:10:00 +09:00
3 changed files with 14 additions and 6 deletions

View file

@ -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,
};