GaThreadParameter
structure contains information needed to start new thread. It has pointer to function which is entry point of thread and pointer to parameters which will be passed to the function. Restrictions of entry point's function of a thread are described by GaThreadFunctionPointer
type.
More...
#include <D:/Temp/vs/gal/source/Threading.h>
Public Attributes | |
ThreadFunctionPointer | _functionPointer |
Pointer to entry point's function of thread. | |
void * | _functionParameters |
Pointer to parameters which will be passed to the entry point's function. |
GaThreadParameter
structure contains information needed to start new thread. It has pointer to function which is entry point of thread and pointer to parameters which will be passed to the function. Restrictions of entry point's function of a thread are described by GaThreadFunctionPointer
type.
ThreadFunctionPointer Threading::GaThreadParameter::_functionPointer |
Pointer to entry point's function of thread.
Pointer to parameters which will be passed to the entry point's function.