public void GetItemCallstack (int id, List<ulong> outCallstack);

파라미터

idHierarchy item identifier.
outCallstackList filled with callstack pointers as a result of a method call.

설명

Gets the callstack associated with the specified hierarchy item.

When the callstack collection mode is enabled for certain profiler markers (such as GC.Alloc), the profiler writes the callstack to the data stream. The callstack refers to the instruction pointer stack. Instruction pointers can be resolved into function names which you can the use to identify the sample origin in the source code. GetItemCallstack retrieves the callstack as a list of pointers. Each list entry represents a function call.

Use ResolveMethodInfo to get method name and location information for the instruction pointer.