Kernel: Rename Thread::BlockCondition to BlockerSet

This class represents a set of Thread::Blocker objects attached to
something that those blockers are waiting on.
This commit is contained in:
Andreas Kling 2021-08-22 15:59:47 +02:00
commit 85546af417
Notes: sideshowbarker 2024-07-18 05:22:32 +09:00
15 changed files with 83 additions and 86 deletions

View file

@ -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();
}
}