thread.h
author celestar
Sat, 30 Dec 2006 17:08:50 +0000
branchcustombridgeheads
changeset 5605 3864438e7cb2
parent 4300 687a17c9c557
permissions -rw-r--r--
(svn r7650) [cbh] - Codechange: For the time being, re-enable the invalid-raid debug statements
/* $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 */