Core and Common Threads Stop and Start: Added timeout to the thread waiting loops. If we have waited more than five seconds we can be pretty sure that the thread is deadlocked. So then we can just as well continue and hope for the best.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2383 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
John Peterson
2009-02-23 00:15:19 +00:00
parent 6bc6731f51
commit 472582022b
3 changed files with 18 additions and 5 deletions

View File

@ -91,7 +91,7 @@ void Thread::WaitForDeath()
{
if (m_hThread)
{
WaitForSingleObject(m_hThread, INFINITE);
WaitForSingleObject(m_hThread, THREAD_WAIT_TIMEOUT);
CloseHandle(m_hThread);
m_hThread = NULL;
}
@ -140,7 +140,7 @@ void Event::Set()
void Event::Wait()
{
WaitForSingleObject(m_hEvent, INFINITE);
WaitForSingleObject(m_hEvent, THREAD_WAIT_TIMEOUT);
}
inline HRESULT MsgWaitForSingleObject(HANDLE handle, DWORD timeout)
@ -168,7 +168,7 @@ void Event::MsgWait()
// Wait for any message sent or posted to this queue
// or for one of the passed handles be set to signaled.
result = MsgWaitForSingleObject(m_hEvent, INFINITE);
result = MsgWaitForSingleObject(m_hEvent, THREAD_WAIT_TIMEOUT);
// The result tells us the type of event we have.
if (result == (WAIT_OBJECT_0 + 1))