1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-01-28 18:46:55 -06:00

Merge pull request #6115 from bunnei/fix-kernel-init

hle: kernel: Initialize preemption task after schedulers.
This commit is contained in:
bunnei 2021-03-28 12:13:39 -07:00 committed by GitHub
commit f8561c7a65
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -68,9 +68,9 @@ struct KernelCore::Impl {
InitializePhysicalCores();
InitializeSystemResourceLimit(kernel, system);
InitializeMemoryLayout();
InitializePreemption(kernel);
InitializeSchedulers();
InitializeSuspendThreads();
InitializePreemption(kernel);
}
void InitializeCores() {