27void *
thread_init(
void (*threadfunc)(
void *),
void *user,
const char *name);
void thread_wait(void *thread)
Definition thread.cpp:101
void * thread_init(void(*threadfunc)(void *), void *user, const char *name)
Definition thread.cpp:56
void thread_yield()
Definition thread.cpp:113
void thread_init_and_detach(void(*threadfunc)(void *), void *user, const char *name)
Definition thread.cpp:135
void thread_detach(void *thread)
Definition thread.cpp:124