equal
deleted
inserted
replaced
3 #include "stdafx.h" |
3 #include "stdafx.h" |
4 #include "thread.h" |
4 #include "thread.h" |
5 #include <stdlib.h> |
5 #include <stdlib.h> |
6 #include "helpers.hpp" |
6 #include "helpers.hpp" |
7 |
7 |
8 #if defined(__AMIGA__) || defined(__MORPHOS__) || defined(NO_THREADS) |
8 #if defined(__AMIGA__) || defined(__MORPHOS__) || defined(PSP) || defined(NO_THREADS) |
9 OTTDThread *OTTDCreateThread(OTTDThreadFunc function, void *arg) { return NULL; } |
9 OTTDThread *OTTDCreateThread(OTTDThreadFunc function, void *arg) { return NULL; } |
10 void *OTTDJoinThread(OTTDThread *t) { return NULL; } |
10 void *OTTDJoinThread(OTTDThread *t) { return NULL; } |
11 void OTTDExitThread(void) { NOT_REACHED(); }; |
11 void OTTDExitThread(void) { NOT_REACHED(); }; |
12 |
12 |
13 #elif defined(__OS2__) |
13 #elif defined(__OS2__) |