minor thread debugging issue: move printf before the SetEvent (in Win32ThreadSupport)

This commit is contained in:
erwin.coumans
2010-05-14 00:36:10 +00:00
parent d2cc0d73c5
commit f7be7acc3a

View File

@@ -69,8 +69,8 @@ DWORD WINAPI Thread_no_1( LPVOID lpParam )
{
//exit Thread
status->m_status = 3;
SetEvent(status->m_eventCompletetHandle);
printf("Thread with taskId %i with handle %p exiting\n",status->m_taskId, status->m_threadHandle);
SetEvent(status->m_eventCompletetHandle);
break;
}