[Zion] Add a framework for better process exit.

This commit is contained in:
Drew Galbraith 2023-11-16 23:03:27 -08:00
parent aa2d80b557
commit 308dd6a203
9 changed files with 80 additions and 8 deletions

View file

@ -12,6 +12,8 @@ class ProcessManager {
static void Init();
void InsertProcess(const glcr::RefPtr<Process>& proc);
void RemoveProcess(uint64_t id);
Process& FromId(uint64_t id);
private: