tron@2285: /* $Id$ */ tron@2285: truebrain@9857: /** @file thread_none.cpp No-Threads-Available implementation of Threads */ glx@9574: tron@2285: #include "stdafx.h" tron@2285: #include "thread.h" KUDr@9514: truebrain@9857: OTTDThread *OTTDCreateThread(OTTDThreadFunc function, void *arg) { truebrain@9857: return NULL; KUDr@9514: } KUDr@9514: truebrain@9857: void *OTTDJoinThread(OTTDThread *t) { truebrain@9857: return NULL; truelight@4300: } KUDr@9514: truebrain@9857: void OTTDExitThread() { truebrain@9857: NOT_REACHED(); KUDr@9514: }