Merge pull request #224 from Armada651/clear-process

thread: Clear the process list on shutdown.
This commit is contained in:
bunnei 2018-02-27 22:01:55 -08:00 committed by GitHub
commit b1709410dd
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: 4AEE18F83AFDEB23

View file

@ -406,6 +406,8 @@ void ThreadingInit() {
next_thread_id = 1;
}
void ThreadingShutdown() {}
void ThreadingShutdown() {
Kernel::ClearProcessList();
}
} // namespace Kernel