aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/kernel.cpp
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2019-10-12 08:21:51 -0400
committerFernandoS27 <fsahmkow27@gmail.com>2019-10-15 11:55:24 -0400
commit25f8606a6dab595eb7a92fce9be32e0489079964 (patch)
tree66ab40014264b8ef8567831ba438e29dd672b255 /src/core/hle/kernel/kernel.cpp
parentb3c1deba494d78158ea6764802880b249fe64416 (diff)
Kernel Scheduler: Make sure the global scheduler shutdowns correctly.
Diffstat (limited to 'src/core/hle/kernel/kernel.cpp')
-rw-r--r--src/core/hle/kernel/kernel.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/kernel/kernel.cpp b/src/core/hle/kernel/kernel.cpp
index 002c5af2bb..0d6286f845 100644
--- a/src/core/hle/kernel/kernel.cpp
+++ b/src/core/hle/kernel/kernel.cpp
@@ -116,6 +116,8 @@ struct KernelCore::Impl {
thread_wakeup_event_type = nullptr;
preemption_event = nullptr;
+ global_scheduler.Shutdown();
+
named_ports.clear();
}