diff options
author | Idan Horowitz <idan.horowitz@gmail.com> | 2022-07-10 00:21:54 +0300 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-07-10 14:24:34 +0200 |
commit | 08e88bfcad0145d31e30daab8cab9b96eeec7d99 (patch) | |
tree | 3c44cd6d227ab4d85284d27facbc9e0c2202bf80 /Kernel | |
parent | 275e5cdb6474e95548233427b4d6d99cefff6e75 (diff) | |
download | serenity-08e88bfcad0145d31e30daab8cab9b96eeec7d99.zip |
Kernel: Remove unused WriteNotOpen File BlockFlag
Diffstat (limited to 'Kernel')
-rw-r--r-- | Kernel/Thread.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/Kernel/Thread.h b/Kernel/Thread.h index 20f2c921a6..b507261a62 100644 --- a/Kernel/Thread.h +++ b/Kernel/Thread.h @@ -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; } |