diff options
| author | Liam <byteslice@airmail.cc> | 2022-07-05 23:27:25 -0400 |
|---|---|---|
| committer | Liam <byteslice@airmail.cc> | 2022-07-14 22:47:18 -0400 |
| commit | 21945ae127480c8332c1110ceada2df4a42a5848 (patch) | |
| tree | a385c64a14b0d8e8dd71410eaa47575462f8f368 /src/core/hle/kernel/global_scheduler_context.cpp | |
| parent | 0624c880bd5af45ae9095465e079fa55458515f6 (diff) | |
kernel: fix issues with single core mode
Diffstat (limited to 'src/core/hle/kernel/global_scheduler_context.cpp')
| -rw-r--r-- | src/core/hle/kernel/global_scheduler_context.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/core/hle/kernel/global_scheduler_context.cpp b/src/core/hle/kernel/global_scheduler_context.cpp index 21fd5cb67..65576b8c4 100644 --- a/src/core/hle/kernel/global_scheduler_context.cpp +++ b/src/core/hle/kernel/global_scheduler_context.cpp @@ -42,11 +42,6 @@ void GlobalSchedulerContext::PreemptThreads() { for (u32 core_id = 0; core_id < Core::Hardware::NUM_CPU_CORES; core_id++) { const u32 priority = preemption_priorities[core_id]; KScheduler::RotateScheduledQueue(kernel, core_id, priority); - - // Signal an interrupt occurred. For core 3, this is a certainty, as preemption will result - // in the rotator thread being scheduled. For cores 0-2, this is to simulate or system - // interrupts that may have occurred. - kernel.PhysicalCore(core_id).Interrupt(); } } |
