mirror of
https://github.com/RGBCube/serenity
synced 2025-07-23 18:17:41 +00:00
Kernel: Remove unused WriteNotOpen File BlockFlag
This commit is contained in:
parent
275e5cdb64
commit
08e88bfcad
1 changed files with 4 additions and 5 deletions
|
@ -586,11 +586,10 @@ public:
|
||||||
Connect = 1 << 5,
|
Connect = 1 << 5,
|
||||||
SocketFlags = Accept | Connect,
|
SocketFlags = Accept | Connect,
|
||||||
|
|
||||||
WriteNotOpen = 1 << 6,
|
WriteError = 1 << 6,
|
||||||
WriteError = 1 << 7,
|
WriteHangUp = 1 << 7,
|
||||||
WriteHangUp = 1 << 8,
|
ReadHangUp = 1 << 8,
|
||||||
ReadHangUp = 1 << 9,
|
Exception = WriteError | WriteHangUp | ReadHangUp,
|
||||||
Exception = WriteNotOpen | WriteError | WriteHangUp | ReadHangUp,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
virtual Type blocker_type() const override { return Type::File; }
|
virtual Type blocker_type() const override { return Type::File; }
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue