1
0
mirror of https://github.com/momo5502/hypervisor.git synced 2025-07-03 17:51:52 +00:00

Extract into library

This commit is contained in:
Maurice Heumann
2022-12-27 16:27:33 +01:00
parent f8f636a829
commit 28dd94f2ef
31 changed files with 279 additions and 237 deletions

View File

@ -70,7 +70,10 @@ private:
{
if (type == process_callback::type::destroy)
{
this->hypervisor_.handle_process_termination(process_id);
if (this->hypervisor_.cleanup_process(process_id))
{
debug_log("Handled termination of %X\n", process_id);
}
}
}
};