TaskingDesc#
Fully qualified name: carb::tasking::TaskingDesc
Defined in carb/tasking/TaskingTypes.h
-
struct TaskingDesc#
Defines a tasking plugin descriptor.
Public Members
-
uint32_t fiberCount#
Historically, the size of the fiber pool, limited to kMaxFibers.
As of Carbonite 171.0, this value is ignored. ITasking will create fibers on demand as memory allows.
-
uint32_t threadCount#
The number of worker threads.
A value of 0 means to use carb::thread::hardware_concurrency().
-
uint32_t *threadAffinity = nullptr#
The optional array of affinity values for every thread.
If set to
nullptr
, affinity is not set. Otherwise it must containthreadCount
number of elements. Each affinity value is a CPU index in the range [0 -carb::thread::hardware_concurrency()
)
-
uint64_t stackSize = 0#
The stack size per fiber.
0 indicates to use the system default.
-
uint32_t fiberCount#