early-access version 2793

This commit is contained in:
pineappleEA
2022-06-17 01:43:45 +02:00
parent f41d375e23
commit 4439b53627
5 changed files with 8 additions and 15 deletions

View File

@@ -829,6 +829,7 @@ void KScheduler::Initialize() {
idle_thread = KThread::Create(system.Kernel());
ASSERT(KThread::InitializeIdleThread(system, idle_thread, core_id).IsSuccess());
idle_thread->SetName(fmt::format("IdleThread:{}", core_id));
idle_thread->EnableDispatch();
}
KScopedSchedulerLock::KScopedSchedulerLock(KernelCore& kernel)