1
0

Small Linux fixes.

This commit is contained in:
madmaxoft
2013-08-20 19:29:29 +02:00
parent 0faa1ee2cb
commit 40cb30b6a5
3 changed files with 4 additions and 3 deletions

View File

@@ -147,6 +147,7 @@ bool cIsThread::Wait(void)
int res = pthread_join(m_Handle, NULL);
m_Handle = NULL;
LOGD("Thread %s finished", m_ThreadName.c_str());
m_HasStarted = false;
return (res == 0);
#endif // else _WIN32
}