Merge branch 'tmp2'

This commit is contained in:
Jeff Garzik 2011-08-04 15:22:05 -04:00 committed by Jeff Garzik
commit bd1e54bc0b

View file

@ -623,7 +623,10 @@ inline pthread_t CreateThread(void(*pfn)(void*), void* parg, bool fWantHandle=fa
return (pthread_t)0;
}
if (!fWantHandle)
{
pthread_detach(hthread);
return (pthread_t)-1;
}
return hthread;
}