1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-08-31 08:26:32 -05:00

Merge pull request #7603 from ameerj/here-we-go-again

kernel: Manually destroy the current process during shut down
This commit is contained in:
bunnei
2021-12-19 02:09:53 -08:00
committed by GitHub

View File

@@ -182,7 +182,10 @@ struct KernelCore::Impl {
// Shutdown all processes.
if (current_process) {
current_process->Finalize();
current_process->Close();
// current_process->Close();
// TODO: The current process should be destroyed based on accurate ref counting after
// calling Close(). Adding a manual Destroy() call instead to avoid a memory leak.
current_process->Destroy();
current_process = nullptr;
}