summaryrefslogtreecommitdiff
path: root/Source/Core/Common/Src/Thread.cpp
diff options
context:
space:
mode:
authorhrydgard <hrydgard@gmail.com>2009-02-23 20:52:52 +0000
committerhrydgard <hrydgard@gmail.com>2009-02-23 20:52:52 +0000
commit042034f19913526935c24e6446e5e49954a5dea6 (patch)
treecd98d87072b3cfaa9ace1b6baabf60cc961eff39 /Source/Core/Common/Src/Thread.cpp
parent96827d9996c55fc517d03e18d7586720309aea75 (diff)
Restore proper functionality of events and thread waits. The arbitrary 5 sec timeout ( ??? ) broke stepping in the debugger.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2397 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/Common/Src/Thread.cpp')
-rw-r--r--Source/Core/Common/Src/Thread.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/Common/Src/Thread.cpp b/Source/Core/Common/Src/Thread.cpp
index 57196c837b..b7d185284d 100644
--- a/Source/Core/Common/Src/Thread.cpp
+++ b/Source/Core/Common/Src/Thread.cpp
@@ -91,7 +91,7 @@ void Thread::WaitForDeath()
{
if (m_hThread)
{
- WaitForSingleObject(m_hThread, THREAD_WAIT_TIMEOUT);
+ WaitForSingleObject(m_hThread, INFINITE);
CloseHandle(m_hThread);
m_hThread = NULL;
}
@@ -140,7 +140,7 @@ void Event::Set()
void Event::Wait()
{
- WaitForSingleObject(m_hEvent, THREAD_WAIT_TIMEOUT);
+ WaitForSingleObject(m_hEvent, INFINITE);
}
inline HRESULT MsgWaitForSingleObject(HANDLE handle, DWORD timeout)