1
0
mirror of https://github.com/momo5502/hypervisor.git synced 2025-07-04 02:01:58 +00:00

Add non-threadsafe process callbacks

This commit is contained in:
Maurice Heumann
2022-12-27 09:36:46 +01:00
parent a6e0d7de47
commit 65417e3e7a
6 changed files with 206 additions and 21 deletions

View File

@ -115,7 +115,7 @@ int atexit(const globals::destructor destructor)
try
{
globals::destructors->push_back(destructor);
globals::destructors->push_front(destructor);
}
catch (const std::exception& e)
{