src/thread.h
changeset 6573 7624f942237f
parent 5726 8f399788f6c9
child 6574 e1d1a12faaf7
equal deleted inserted replaced
6572:e35266003390 6573:7624f942237f
     7 
     7 
     8 typedef void* (*OTTDThreadFunc)(void*);
     8 typedef void* (*OTTDThreadFunc)(void*);
     9 
     9 
    10 OTTDThread* OTTDCreateThread(OTTDThreadFunc, void*);
    10 OTTDThread* OTTDCreateThread(OTTDThreadFunc, void*);
    11 void*       OTTDJoinThread(OTTDThread*);
    11 void*       OTTDJoinThread(OTTDThread*);
    12 void        OTTDExitThread(void);
    12 void        OTTDExitThread();
    13 
    13 
    14 #endif /* THREAD_H */
    14 #endif /* THREAD_H */