DoPooledThreadWaitTimeouts

DoPooledThreadWaitTimeouts

#Overview

name: DoPooledThreadWaitTimeouts

This variable is created as a Console Variable (cvar).

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/HAL/ThreadingBase.cpp:34

Scope: file

Source code excerpt:

static bool GDoPooledThreadWaitTimeouts = false;
static FAutoConsoleVariableRef CVarDoPooledThreadWaitTimeouts(
	TEXT("DoPooledThreadWaitTimeouts"),
	GDoPooledThreadWaitTimeouts,
	TEXT("If enabled, uses the old behaviour for waking up pool threads every 10ms. Otherwise, lets pooled threads sleep until data arrives."),
	ECVF_Default
);

/** The global thread pool */