mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 11:28:12 +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,
|
||||
SocketFlags = Accept | Connect,
|
||||
|
||||
WriteNotOpen = 1 << 6,
|
||||
WriteError = 1 << 7,
|
||||
WriteHangUp = 1 << 8,
|
||||
ReadHangUp = 1 << 9,
|
||||
Exception = WriteNotOpen | WriteError | WriteHangUp | ReadHangUp,
|
||||
WriteError = 1 << 6,
|
||||
WriteHangUp = 1 << 7,
|
||||
ReadHangUp = 1 << 8,
|
||||
Exception = WriteError | WriteHangUp | ReadHangUp,
|
||||
};
|
||||
|
||||
virtual Type blocker_type() const override { return Type::File; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue