9 void Thread_Shutdown(void)
13 qboolean Thread_HasThreads(void)
18 void *Thread_CreateMutex(void)
23 void Thread_DestroyMutex(void *mutex)
27 int Thread_LockMutex(void *mutex)
32 int Thread_UnlockMutex(void *mutex)
37 void *Thread_CreateCond(void)
42 void Thread_DestroyCond(void *cond)
46 int Thread_CondSignal(void *cond)
51 int Thread_CondBroadcast(void *cond)
56 int Thread_CondWait(void *cond, void *mutex)
61 void *Thread_CreateThread(int (*fn)(void *), void *data)
66 int Thread_WaitThread(void *thread, int retval)