struct SThreadTaskParams { uint32 nFlags; union { int nPreferedThread; ThreadPoolHandle nThreadsGroupId; }; int16 nPriorityOff; int16 nStackSizeKB; const char* name; };
IThreadTask.h
const char* name;
Name for this task (thread for the blocking task will be named using this string)
uint32 nFlags;
Task flags. @see ETaskFlags
int16 nPriorityOff;
If THREAD_TASK_BLOCKING, this will adjust the priority of the thread
int16 nStackSizeKB;
If THREAD_TASK_BLOCKING, this will adjust the stack size of the thread
SThreadTaskParams();