SThreadTaskParams

C++
struct SThreadTaskParams {
  uint32 nFlags;
  union {
    int nPreferedThread;
    ThreadPoolHandle nThreadsGroupId;
  };
  int16 nPriorityOff;
  int16 nStackSizeKB;
  const char* name;
};
File

IThreadTask.h

SThreadTaskParams::name Data Member
C++
const char* name;
Description

Name for this task (thread for the blocking task will be named using this string)

SThreadTaskParams::nFlags Data Member
C++
uint32 nFlags;
Description

Task flags. @see ETaskFlags

SThreadTaskParams::nPriorityOff Data Member
C++
int16 nPriorityOff;
Description

If THREAD_TASK_BLOCKING, this will adjust the priority of the thread

SThreadTaskParams::nStackSizeKB Data Member
C++
int16 nStackSizeKB;
Description

If THREAD_TASK_BLOCKING, this will adjust the stack size of the thread

SThreadTaskParams::SThreadTaskParams Constructor
C++
SThreadTaskParams();