Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FGenericPlatformStackWalk > API/Runtime/Core/FGenericPlatformStackWalk/EStackWalkFlags
| |
|
| Name |
EStackWalkFlags |
| Type |
enum |
| Header File |
/Engine/Source/Runtime/Core/Public/GenericPlatform/GenericPlatformStackWalk.h |
| Include Path |
#include "GenericPlatform/GenericPlatformStackWalk.h" |
Syntax
enum EStackWalkFlags
{
AccurateStackWalk = 0,
FastStackWalk = (1 << 0),
FlagsUsedWhenHandlingEnsure = (FastStackWalk),
}
Values
| Name |
Remarks |
| AccurateStackWalk |
Default value (empty set of flags). |
| FastStackWalk |
Used when preferring speed over more information. |
| FlagsUsedWhenHandlingEnsure |
This is a set of flags that will be passed when unwinding the callstack for ensure(). |