summaryrefslogtreecommitdiff
path: root/thread.c
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2006-08-20 13:48:04 +0000
committertruelight <truelight@openttd.org>2006-08-20 13:48:04 +0000
commitf73b17323eefc9f8b3c2e992d57ed5f631bf72f6 (patch)
tree921925981de00629f1e983eaa3e59cb4b02c85f8 /thread.c
parenta06d5548ebe58ab290be50ca4b31368db5f4bc10 (diff)
downloadopenttd-f73b17323eefc9f8b3c2e992d57ed5f631bf72f6.tar.xz
(svn r5978) -Add: allow a switch in Makefile.config to disable threads in OpenTTD (no matter what system you are on). Only useful for testing.
Diffstat (limited to 'thread.c')
-rw-r--r--thread.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/thread.c b/thread.c
index a2475408b..ab2cfd21d 100644
--- a/thread.c
+++ b/thread.c
@@ -4,10 +4,10 @@
#include "thread.h"
#include <stdlib.h>
-#if defined(__AMIGA__) || defined(__MORPHOS__)
-OTTDThread* OTTDCreateThread(OTTDThreadFunc function, void* arg) { return NULL; }
-void* OTTDJoinThread(OTTDThread* t) { return NULL; }
-void OTTDExitThread() { NOT_REACHED(); };
+#if defined(__AMIGA__) || defined(__MORPHOS__) || defined(NO_THREADS)
+OTTDThread *OTTDCreateThread(OTTDThreadFunc function, void *arg) { return NULL; }
+void *OTTDJoinThread(OTTDThread *t) { return NULL; }
+void OTTDExitThread(void) { NOT_REACHED(); };
#elif defined(__OS2__)