[+] Try/catch around SysPump under async sched

This commit is contained in:
Reece Wilson 2022-05-18 21:22:58 +01:00
parent a02bb0aabd
commit 59ea8d1c3d

View File

@ -57,8 +57,15 @@ namespace Aurora::Async
static bool gLockedPump = false;
static void PumpSysThread()
{
try
{
RuntimeSysPump();
}
catch (...)
{
SysPushErrorCatch("SysPump failed");
}
gLockedPump = false;
}