(svn r15158) -Cleanup: remove some unused/unneeded cruft from the thread generalisation.

This commit is contained in:
rubidium
2009-01-20 03:12:46 +00:00
parent 4aabc91c04
commit 202aeb8306
8 changed files with 66 additions and 432 deletions

View File

@@ -5,22 +5,8 @@
#include "stdafx.h"
#include "thread.h"
/* static */ ThreadObject *ThreadObject::New(OTTDThreadFunc proc, void *param)
/* static */ bool ThreadObject::New(OTTDThreadFunc proc, void *param, ThreadObject **thread)
{
return NULL;
}
/* static */ ThreadObject *ThreadObject::AttachCurrent()
{
return NULL;
}
/* static */ uint ThreadObject::CurrentId()
{
return -1;
}
/* static */ ThreadSemaphore *ThreadSemaphore::New()
{
return NULL;
if (thread != NULL) *thread = NULL;
return false;
}