Thread Purpose: hold the information about a thread. More...
#include <thread.h>
Data Fields | |
rzb_thread_t | iThread |
pthread Thread info. | |
struct Mutex * | mMutex |
mutex protecting this struct | |
bool | bRunning |
true if executing, false if not: must be managed explicitly by thread function | |
void * | pUserData |
Additional info for the thread. | |
char * | sName |
The thread name. | |
struct RazorbackContext * | pContext |
The Thread Context. | |
void(* | mainFunction )(struct Thread *) |
Thread Main Function. | |
bool | bShutdown |
Shutdown Flag. | |
int | refs |
Reference count. |
Thread Purpose: hold the information about a thread.