diff options
Diffstat (limited to 'src/core/cpu_manager.cpp')
| -rw-r--r-- | src/core/cpu_manager.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/cpu_manager.cpp b/src/core/cpu_manager.cpp index 9b9337131..6032cb0bf 100644 --- a/src/core/cpu_manager.cpp +++ b/src/core/cpu_manager.cpp | |||
| @@ -81,8 +81,7 @@ void CpuManager::RunGuestThread() { | |||
| 81 | while (true) { | 81 | while (true) { |
| 82 | auto& physical_core = kernel.CurrentPhysicalCore(); | 82 | auto& physical_core = kernel.CurrentPhysicalCore(); |
| 83 | if (!physical_core.IsInterrupted()) { | 83 | if (!physical_core.IsInterrupted()) { |
| 84 | physical_core.Idle(); | 84 | physical_core.Run(); |
| 85 | // physical_core.Run(); | ||
| 86 | } | 85 | } |
| 87 | auto& scheduler = physical_core.Scheduler(); | 86 | auto& scheduler = physical_core.Scheduler(); |
| 88 | scheduler.TryDoContextSwitch(); | 87 | scheduler.TryDoContextSwitch(); |