gc.ForceEnableGCProcessor
gc.ForceEnableGCProcessor
#Overview
name: gc.ForceEnableGCProcessor
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Force garbage collection to use the debug processor which may provide additional information during GC crashes.
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/CoreUObject/Private/UObject/GarbageCollection.cpp:315
Scope: file
Source code excerpt:
static bool GForceEnableDebugGCProcessor = 0;
static FAutoConsoleVariableRef CVarForceEnableDebugGCProcessor(
TEXT("gc.ForceEnableGCProcessor"),
GForceEnableDebugGCProcessor,
TEXT("Force garbage collection to use the debug processor which may provide additional information during GC crashes."),
ECVF_Default
);
static int32 GMaxFinishDestroyTimeoutObjectsToLog = 10;