diff options
| author | 2021-08-06 23:16:36 -0700 | |
|---|---|---|
| committer | 2021-12-06 16:39:16 -0800 | |
| commit | 629f9274ac88722d828e3484f73084376c2811ba (patch) | |
| tree | e98e30e878ab80b370b42fcacfc4a737227f2a06 /src/core/hle/kernel | |
| parent | core: hle: kernel: k_scheduler: Improve ScheduleImpl. (diff) | |
| download | yuzu-629f9274ac88722d828e3484f73084376c2811ba.tar.gz yuzu-629f9274ac88722d828e3484f73084376c2811ba.tar.xz yuzu-629f9274ac88722d828e3484f73084376c2811ba.zip | |
core: hle: kernel: k_scheduler: Remove unnecessary MakeCurrentProcess.
Diffstat (limited to 'src/core/hle/kernel')
| -rw-r--r-- | src/core/hle/kernel/k_scheduler.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/core/hle/kernel/k_scheduler.cpp b/src/core/hle/kernel/k_scheduler.cpp index e523c4923..f5236dfea 100644 --- a/src/core/hle/kernel/k_scheduler.cpp +++ b/src/core/hle/kernel/k_scheduler.cpp | |||
| @@ -699,11 +699,6 @@ void KScheduler::Reload(KThread* thread) { | |||
| 699 | if (thread) { | 699 | if (thread) { |
| 700 | ASSERT_MSG(thread->GetState() == ThreadState::Runnable, "Thread must be runnable."); | 700 | ASSERT_MSG(thread->GetState() == ThreadState::Runnable, "Thread must be runnable."); |
| 701 | 701 | ||
| 702 | auto* const thread_owner_process = thread->GetOwnerProcess(); | ||
| 703 | if (thread_owner_process != nullptr) { | ||
| 704 | system.Kernel().MakeCurrentProcess(thread_owner_process); | ||
| 705 | } | ||
| 706 | |||
| 707 | Core::ARM_Interface& cpu_core = system.ArmInterface(core_id); | 702 | Core::ARM_Interface& cpu_core = system.ArmInterface(core_id); |
| 708 | cpu_core.LoadContext(thread->GetContext32()); | 703 | cpu_core.LoadContext(thread->GetContext32()); |
| 709 | cpu_core.LoadContext(thread->GetContext64()); | 704 | cpu_core.LoadContext(thread->GetContext64()); |