Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FGenericPlatformStackWalk
Warnings * The code assumes that HumanReadableString is large enough to contain the information.
Description
- Walks the stack for the specified thread and appends the human readable string to the passed in one.
-
The code assumes that HumanReadableString is large enough to contain the information.
| Name | ThreadStackWalkAndDump |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/GenericPlatform/GenericPlatformStackWalk.h |
| Include Path | #include "GenericPlatform/GenericPlatformStackWalk.h" |
static void ThreadStackWalkAndDump
(
ANSICHAR * HumanReadableString,
SIZE_T HumanReadableStringSize,
int32 IgnoreCount,
uint32 ThreadId
)
Parameters
| Name | Remarks |
|---|---|
| HumanReadableString | String to concatenate information with |
| HumanReadableStringSize | size of string in characters |
| IgnoreCount | Number of stack entries to ignore (some are guaranteed to be in the stack walking code) |
| ThreadId | ThreadId to walk the strack for. |