瀏覽代碼

core: hle: kernel: k_scheduler: Remove unnecessary MakeCurrentProcess.

bunnei 5 年之前
父節點
當前提交
629f9274ac
共有 1 個文件被更改,包括 0 次插入5 次删除
  1. 0 5
      src/core/hle/kernel/k_scheduler.cpp

+ 0 - 5
src/core/hle/kernel/k_scheduler.cpp

@@ -699,11 +699,6 @@ void KScheduler::Reload(KThread* thread) {
     if (thread) {
         ASSERT_MSG(thread->GetState() == ThreadState::Runnable, "Thread must be runnable.");
 
-        auto* const thread_owner_process = thread->GetOwnerProcess();
-        if (thread_owner_process != nullptr) {
-            system.Kernel().MakeCurrentProcess(thread_owner_process);
-        }
-
         Core::ARM_Interface& cpu_core = system.ArmInterface(core_id);
         cpu_core.LoadContext(thread->GetContext32());
         cpu_core.LoadContext(thread->GetContext64());