Kernel: Rename ThreadBlocker classes to avoid stutter

Thread::ThreadBlockerFoo is a lot less nice to read than Thread::FooBlocker
This commit is contained in:
Robin Burchell 2019-07-18 18:12:37 +02:00 committed by Andreas Kling
commit 52743f9eec
Notes: sideshowbarker 2024-07-19 13:09:51 +09:00
6 changed files with 61 additions and 61 deletions

View file

@ -162,7 +162,7 @@ KResult TCPSocket::protocol_connect(FileDescription& description, ShouldBlock sh
m_state = State::Connecting;
if (should_block == ShouldBlock::Yes) {
current->block(*new Thread::ThreadBlockerConnect(description));
current->block(*new Thread::ConnectBlocker(description));
ASSERT(is_connected());
return KSuccess;
}