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

View file

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