mirror of
https://github.com/RGBCube/serenity
synced 2025-05-29 07:05:06 +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
|
@ -443,9 +443,9 @@ KResult FileDescription::chown(uid_t uid, gid_t gid)
|
|||
return m_file->chown(*this, uid, gid);
|
||||
}
|
||||
|
||||
FileBlockCondition& FileDescription::block_condition()
|
||||
FileBlockerSet& FileDescription::blocker_set()
|
||||
{
|
||||
return m_file->block_condition();
|
||||
return m_file->blocker_set();
|
||||
}
|
||||
|
||||
KResult FileDescription::apply_flock(Process const& process, Userspace<flock const*> lock)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue