summaryrefslogtreecommitdiff
path: root/Kernel/WaitQueue.h
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-08-22 15:59:47 +0200
committerAndreas Kling <kling@serenityos.org>2021-08-23 00:02:09 +0200
commit85546af4171c37b6569ea723c3bf28eda6e2894d (patch)
treec19f7b37dce99195d4e25f31b0ee17c6f3ab0f0f /Kernel/WaitQueue.h
parent05e1b196e9999ccd67c73c877acd786468d167c5 (diff)
downloadserenity-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.h2
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);