mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 05:57: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
|
@ -485,7 +485,7 @@ public:
|
|||
|
||||
void disowned_by_waiter(Process& process);
|
||||
void unblock_waiters(Thread::WaitBlocker::UnblockFlags, u8 signal = 0);
|
||||
Thread::WaitBlockCondition& wait_block_condition() { return m_wait_block_condition; }
|
||||
Thread::WaitBlockerSet& wait_blocker_set() { return m_wait_block_condition; }
|
||||
|
||||
template<typename Callback>
|
||||
void for_each_coredump_property(Callback callback) const
|
||||
|
@ -787,7 +787,7 @@ private:
|
|||
// and wait for a tracer to attach.
|
||||
bool m_wait_for_tracer_at_next_execve { false };
|
||||
|
||||
Thread::WaitBlockCondition m_wait_block_condition;
|
||||
Thread::WaitBlockerSet m_wait_block_condition;
|
||||
|
||||
struct CoredumpProperty {
|
||||
OwnPtr<KString> key;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue