thread.h
author glx
Wed, 06 Sep 2006 13:58:31 +0000
changeset 4562 48ab394a84e8
parent 4300 c7e43c47a2b9
permissions -rw-r--r--
(svn r6410) -remove unittest
/* $Id$ */

#ifndef THREAD_H
#define THREAD_H

typedef struct OTTDThread OTTDThread;

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

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

#endif /* THREAD_H */