Web file system implementation + fixes

This commit is contained in:
elasota
2021-04-19 01:02:10 -04:00
parent f15a87041a
commit 84a4d16aed
30 changed files with 373 additions and 81 deletions

View File

@@ -459,7 +459,13 @@ namespace PortabilityLayer
break;
}
if (WaitForEvent(&evtHolder, 1))
bool haveEvent = false;
{
PL_ASYNCIFY_PARANOID_DISARM_FOR_SCOPE();
haveEvent = WaitForEvent(&evtHolder, 1);
}
if (haveEvent)
rcvEvt = &evtHolder;
else
rcvEvt = nullptr;