core: kernel: Clear process list earlier.

This commit is contained in:
bunnei 2020-12-14 17:57:40 -08:00
parent 4991620f89
commit 6d2f9428c5

View File

@ -76,6 +76,8 @@ struct KernelCore::Impl {
}
void Shutdown() {
process_list.clear();
next_object_id = 0;
next_kernel_process_id = Process::InitialKIPIDMin;
next_user_process_id = Process::ProcessIDMin;
@ -89,8 +91,6 @@ struct KernelCore::Impl {
cores.clear();
process_list.clear();
current_process = nullptr;
system_resource_limit = nullptr;