SVC: Correct races on physical core switching.

This commit is contained in:
Fernando Sahmkow 2020-02-27 11:25:42 -04:00
parent cc3aa95926
commit bd36eaf15d
2 changed files with 10 additions and 10 deletions

View file

@ -79,12 +79,13 @@ void CpuManager::RunGuestThread() {
sched.OnThreadStart();
}
while (true) {
auto& physical_core = kernel.CurrentPhysicalCore();
while (!physical_core.IsInterrupted()) {
physical_core.Run();
auto* physical_core = &kernel.CurrentPhysicalCore();
while (!physical_core->IsInterrupted()) {
physical_core->Run();
physical_core = &kernel.CurrentPhysicalCore();
}
physical_core.ClearExclusive();
auto& scheduler = physical_core.Scheduler();
physical_core->ClearExclusive();
auto& scheduler = physical_core->Scheduler();
scheduler.TryDoContextSwitch();
}
}