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/TTY/SlavePTY.cpp | |
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/TTY/SlavePTY.cpp')
-rw-r--r-- | Kernel/TTY/SlavePTY.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Kernel/TTY/SlavePTY.cpp b/Kernel/TTY/SlavePTY.cpp index f0b608340b..f6bdfc5cdc 100644 --- a/Kernel/TTY/SlavePTY.cpp +++ b/Kernel/TTY/SlavePTY.cpp @@ -112,9 +112,9 @@ String SlavePTY::device_name() const return String::formatted("{}", minor()); } -FileBlockCondition& SlavePTY::block_condition() +FileBlockerSet& SlavePTY::blocker_set() { - return m_master->block_condition(); + return m_master->blocker_set(); } } |