diff options
author | Andreas Kling <kling@serenityos.org> | 2021-08-22 15:59:47 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-08-23 00:02:09 +0200 |
commit | 85546af4171c37b6569ea723c3bf28eda6e2894d (patch) | |
tree | c19f7b37dce99195d4e25f31b0ee17c6f3ab0f0f /Kernel/WaitQueue.h | |
parent | 05e1b196e9999ccd67c73c877acd786468d167c5 (diff) | |
download | serenity-85546af4171c37b6569ea723c3bf28eda6e2894d.zip |
Kernel: Rename Thread::BlockCondition to BlockerSet
This class represents a set of Thread::Blocker objects attached to
something that those blockers are waiting on.
Diffstat (limited to 'Kernel/WaitQueue.h')
-rw-r--r-- | Kernel/WaitQueue.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/WaitQueue.h b/Kernel/WaitQueue.h index 1287da8173..b093feeea8 100644 --- a/Kernel/WaitQueue.h +++ b/Kernel/WaitQueue.h @@ -12,7 +12,7 @@ namespace Kernel { -class WaitQueue final : public Thread::BlockCondition { +class WaitQueue final : public Thread::BlockerSet { public: u32 wake_one(); u32 wake_n(u32 wake_count); |