summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-02-28 07:01:55 +0100
committerGitHub <noreply@github.com>2018-02-28 07:01:55 +0100
commitb1709410dd9b1f9ed9bf76f54ce82b5e7f89ab66 (patch)
treec7900ff71c5aa9b80385cacdd85851597518530f
parentRemoves the use of QKeySequence::Cancel (#186) (diff)
parentthread: Clear the process list on shutdown. (diff)
downloadyuzu-b1709410dd9b1f9ed9bf76f54ce82b5e7f89ab66.tar
yuzu-b1709410dd9b1f9ed9bf76f54ce82b5e7f89ab66.tar.gz
yuzu-b1709410dd9b1f9ed9bf76f54ce82b5e7f89ab66.tar.bz2
yuzu-b1709410dd9b1f9ed9bf76f54ce82b5e7f89ab66.tar.lz
yuzu-b1709410dd9b1f9ed9bf76f54ce82b5e7f89ab66.tar.xz
yuzu-b1709410dd9b1f9ed9bf76f54ce82b5e7f89ab66.tar.zst
yuzu-b1709410dd9b1f9ed9bf76f54ce82b5e7f89ab66.zip
-rw-r--r--src/core/hle/kernel/thread.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/hle/kernel/thread.cpp b/src/core/hle/kernel/thread.cpp
index dd0a8ae48..25828777e 100644
--- a/src/core/hle/kernel/thread.cpp
+++ b/src/core/hle/kernel/thread.cpp
@@ -406,6 +406,8 @@ void ThreadingInit() {
next_thread_id = 1;
}
-void ThreadingShutdown() {}
+void ThreadingShutdown() {
+ Kernel::ClearProcessList();
+}
} // namespace Kernel