epee: blind attempt to fix exit hang on windows
Thanks to duckduckgo and the internet. This might even compile.
This commit is contained in:
parent
dbf2ab56c5
commit
452aeca5cd
|
@ -155,6 +155,20 @@ namespace epee
|
||||||
else if (0 < retval)
|
else if (0 < retval)
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
#else
|
||||||
|
while (m_run.load(std::memory_order_relaxed))
|
||||||
|
{
|
||||||
|
int retval = ::WaitForSingleObject(::GetStdHandle(STD_INPUT_HANDLE), 100);
|
||||||
|
switch (retval)
|
||||||
|
{
|
||||||
|
case WAIT_FAILED:
|
||||||
|
return false;
|
||||||
|
case WAIT_OBJECT_0:
|
||||||
|
return true;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in New Issue