src/thread.cpp
changeset 6230 06c91ff0af27
parent 5860 7fdc9b423ba1
child 6298 c30fe89622df
equal deleted inserted replaced
6229:f2d5b35a88da 6230:06c91ff0af27
     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__)