30#ifndef THREADWRAPPER_H
31#define THREADWRAPPER_H
39int thread_start(
void* thread,
void* (*function)(
void*),
void* arguments);
void * thread_new()
Definition ThreadWrapper.cpp:41
int thread_start(void *thread, void *(*function)(void *), void *arguments)
int thread_join(void *thread, int *thread_return)
void thread_delete(void *thread)
Definition ThreadWrapper.cpp:45
int thread_terminate(void *thread)
Definition ThreadWrapper.cpp:62