Browse Source
Merge pull request #224 from Armada651/clear-process
thread: Clear the process list on shutdown.
pull/15/merge
bunnei
8 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
1 deletions
-
src/core/hle/kernel/thread.cpp
|
|
|
@ -406,6 +406,8 @@ void ThreadingInit() { |
|
|
|
next_thread_id = 1; |
|
|
|
} |
|
|
|
|
|
|
|
void ThreadingShutdown() {} |
|
|
|
void ThreadingShutdown() { |
|
|
|
Kernel::ClearProcessList(); |
|
|
|
} |
|
|
|
|
|
|
|
} // namespace Kernel
|