mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 19:27:44 +00:00
Kernel: Rename some BlockerSets to foo_blocker_set
Cleanup after renaming BlockCondition to BlockerSet.
This commit is contained in:
parent
63f9b0d0dc
commit
e51a5e2d5d
6 changed files with 14 additions and 14 deletions
|
@ -485,7 +485,7 @@ public:
|
|||
|
||||
void disowned_by_waiter(Process& process);
|
||||
void unblock_waiters(Thread::WaitBlocker::UnblockFlags, u8 signal = 0);
|
||||
Thread::WaitBlockerSet& wait_blocker_set() { return m_wait_block_condition; }
|
||||
Thread::WaitBlockerSet& wait_blocker_set() { return m_wait_blocker_set; }
|
||||
|
||||
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::WaitBlockerSet m_wait_block_condition;
|
||||
Thread::WaitBlockerSet m_wait_blocker_set;
|
||||
|
||||
struct CoredumpProperty {
|
||||
OwnPtr<KString> key;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue