[c-host] windows: added event support

This commit is contained in:
Geoffrey McRae 2019-03-03 23:30:02 +11:00
parent be736c48e9
commit f572a72c2a

View File

@ -298,4 +298,43 @@ bool os_joinThread(osThreadHandle * handle, int * resultCode)
DEBUG_WINERROR("Unknown failure waiting for thread", GetLastError());
return false;
}
osEventHandle * os_createEvent()
{
HANDLE event = CreateEvent(NULL, FALSE, FALSE, NULL);
return (osEventHandle*)event;
}
void os_freeEvent(osEventHandle * handle)
{
CloseHandle((HANDLE)handle);
}
bool os_waitEvent(osEventHandle * handle)
{
while(true)
{
switch(WaitForSingleObject((HANDLE)handle, INFINITE))
{
case WAIT_OBJECT_0:
return true;
case WAIT_ABANDONED:
case WAIT_TIMEOUT:
continue;
case WAIT_FAILED:
DEBUG_WINERROR("Wait for event failed", GetLastError());
return false;
}
DEBUG_ERROR("Unknown wait event return code");
return false;
}
}
bool os_signalEvent(osEventHandle * handle)
{
return SetEvent((HANDLE)handle);
}