PoolThreadStackSize

PoolThreadStackSize

#Overview

name: PoolThreadStackSize

The value of this variable can be defined or overridden in .ini config files. 1 .ini config file referencing this setting variable.

It is referenced in 1 C++ source file.

#Summary

#Setting Variables

#References In INI files

Location: <Workspace>/Engine/Config/BaseEngine.ini:1451, section: [Core.System]

#References in C++ code

#Callsites

This variable is referenced in the following C++ source code:

#Loc: <Workspace>/Engine/Source/Runtime/Launch/Private/LaunchEngineLoop.cpp:2695

Scope (from outer to inner):

file
function     int32 FEngineLoop::PreInitPreStartupScreen

Source code excerpt:

		int32 StackSize = 128 * 1024;
		// GConfig is not initialized yet, the only solution for now is to hardcode desired values
		// GConfig->GetInt(TEXT("Core.System"), TEXT("PoolThreadStackSize"), StackSize, GEngineIni);

		bool bForceEditorStackSize = false;
#if WITH_EDITOR
		bForceEditorStackSize = true;
#endif