mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 03:27:44 +00:00
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:
parent
05e1b196e9
commit
85546af417
15 changed files with 83 additions and 86 deletions
|
@ -125,7 +125,7 @@ public:
|
|||
|
||||
KResult chown(uid_t, gid_t);
|
||||
|
||||
FileBlockCondition& block_condition();
|
||||
FileBlockerSet& blocker_set();
|
||||
|
||||
KResult apply_flock(Process const&, Userspace<flock const*>);
|
||||
KResult get_flock(Userspace<flock*>) const;
|
||||
|
@ -138,7 +138,7 @@ private:
|
|||
|
||||
void evaluate_block_conditions()
|
||||
{
|
||||
block_condition().unblock();
|
||||
blocker_set().unblock();
|
||||
}
|
||||
|
||||
RefPtr<Custody> m_custody;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue