thrThreadCreate

A wrapper for pthread_create

Description:

This function creates a new thread using default attributes.

Invocation

void thrThreadCreate( pthread_t thread, void (start_routine)(void),

Arguments

thread
Pointer to the pthread structure to initialise.
start_routine
Pointer to the routine to run in the new thread.
arg
Pointer to be passed to the start routine.
status
Pointer to the inherited status value.