TaskGraph.EnableForkedMultithreading
TaskGraph.EnableForkedMultithreading
#Overview
name: TaskGraph.EnableForkedMultithreading
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
When false will prevent the task graph from running multithreaded on forked processes.
It is referenced in 1
C++ source file.
#Summary
#References in C++ code
#Callsites
This variable is referenced in the following C++ source code:
#Loc: <Workspace>/Engine/Source/Runtime/Core/Private/Async/TaskGraph.cpp:90
Scope: file
Source code excerpt:
CORE_API bool GAllowTaskGraphForkMultithreading = true;
static FAutoConsoleVariableRef CVarEnableForkedMultithreading(
TEXT("TaskGraph.EnableForkedMultithreading"),
GAllowTaskGraphForkMultithreading,
TEXT("When false will prevent the task graph from running multithreaded on forked processes.")
);
static int32 CVar_ForkedProcess_MaxWorkerThreads = 2;
static FAutoConsoleVariableRef CVarForkedProcessMaxWorkerThreads(