1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-20 13:45:06 +00:00

Kernel: Rename some BlockerSets to foo_blocker_set

Cleanup after renaming BlockCondition to BlockerSet.
This commit is contained in:
Andreas Kling 2021-08-23 01:22:38 +02:00
parent 63f9b0d0dc
commit e51a5e2d5d
6 changed files with 14 additions and 14 deletions

View file

@ -386,7 +386,7 @@ void Thread::die_if_needed()
void Thread::exit(void* exit_value)
{
VERIFY(Thread::current() == this);
m_join_condition.thread_did_exit(exit_value);
m_join_blocker_set.thread_did_exit(exit_value);
set_should_die();
u32 unlock_count;
[[maybe_unused]] auto rc = unlock_process_if_locked(unlock_count);
@ -511,7 +511,7 @@ void Thread::finalize()
SpinlockLocker lock(g_scheduler_lock);
dbgln_if(THREAD_DEBUG, "Finalizing thread {}", *this);
set_state(Thread::State::Dead);
m_join_condition.thread_finalizing();
m_join_blocker_set.thread_finalizing();
}
if (m_dump_backtrace_on_finalization)