summaryrefslogtreecommitdiff
path: root/src/thread.h
blob: 711f78bc4b6cf1bb19898a7d5df8cf8fc7560fab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* $Id$ */

#ifndef THREAD_H
#define THREAD_H

typedef struct OTTDThread OTTDThread;

typedef void* (*OTTDThreadFunc)(void*);

OTTDThread* OTTDCreateThread(OTTDThreadFunc, void*);
void*       OTTDJoinThread(OTTDThread*);
void        OTTDExitThread();

#endif /* THREAD_H */