Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/Containers > API/Runtime/Core/Containers/FStackTracker
References
| Module | Core |
| Header | /Engine/Source/Runtime/Core/Public/Containers/StackTracker.h |
| Include | #include "Containers/StackTracker.h" |
| Source | /Engine/Source/Runtime/Core/Private/Containers/StackTracker.cpp |
void CaptureStackTrace
&40;
int32 EntriesToIgnore,
void &42; UserData,
int32 StackLen,
bool bLookupStringsForAliasRemoval
&41;
Remarks
Captures the current stack and updates stack tracking information. optionally stores a user data pointer that the tracker will take ownership of and delete upon reset you must allocate the memory with FMemory::Malloc() or provide a custom delete function EntriesToIgnore are removed from the top of then stack, then we keep at most StackLen of the remaining entries.
Captures the current stack and updates stack tracking information. optionally stores a user data pointer that the tracker will take ownership of and delete upon reset you must allocate the memory with FMemory::Malloc() or provide a custom delete function