forked from ShuriZma/suyu
1
0
Fork 0

thread: Clear the process list on shutdown.

This commit is contained in:
Jules Blok 2018-02-27 17:13:39 +01:00
parent 65f3119074
commit c74af07c49
1 changed files with 3 additions and 1 deletions

View File

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