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
1 changed files with 14 additions and 0 deletions
|
@ -155,6 +155,20 @@ namespace epee
|
|||
else if (0 < retval)
|
||||
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
|
||||
|
||||
return true;
|
||||
|
|
Loading…
Reference in a new issue