Changed: Make CWinThread::start more sane, and fixed a typo

This commit is contained in:
kaetemi 2012-04-11 22:05:18 +02:00
parent 20e3ce42a3
commit 83ce48e8dd
2 changed files with 4 additions and 1 deletions

View file

@ -196,7 +196,7 @@ void CPThread::wait ()
{ {
if (_State == ThreadStateRunning) if (_State == ThreadStateRunning)
{ {
int error = pthread_join(_ThreadHandle, 0) != 0; int error = pthread_join(_ThreadHandle, 0);
switch (error) switch (error)
{ {
case 0: case 0:

View file

@ -190,6 +190,9 @@ CWinThread::~CWinThread ()
void CWinThread::start () void CWinThread::start ()
{ {
if (isRunning())
throw EThread("Starting a thread that is already started, existing thread will continue running, this should not happen");
// ThreadHandle = (void *) ::CreateThread (NULL, _StackSize, ProxyFunc, this, 0, (DWORD *)&ThreadId); // ThreadHandle = (void *) ::CreateThread (NULL, _StackSize, ProxyFunc, this, 0, (DWORD *)&ThreadId);
ThreadHandle = (void *) ::CreateThread (NULL, 0, ProxyFunc, this, 0, (DWORD *)&ThreadId); ThreadHandle = (void *) ::CreateThread (NULL, 0, ProxyFunc, this, 0, (DWORD *)&ThreadId);
// nldebug("NLMISC: thread %x started for runnable '%x'", typeid( Runnable ).name()); // nldebug("NLMISC: thread %x started for runnable '%x'", typeid( Runnable ).name());