MCPcopy Create free account
hub / github.com/IppClub/Dora-SSR / debugOutputCallstack

Function debugOutputCallstack

Source/3rdParty/bx/src/debug.cpp:399–404  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

397#endif // BX_CONFIG_CALLSTACK_*
398
399 void debugOutputCallstack(uint32_t _skip)
400 {
401 uintptr_t stack[32];
402 const uint32_t num = getCallStack(_skip + 1 /* skip self */, BX_COUNTOF(stack), stack);
403 writeCallstack(getDebugOut(), stack, num, ErrorIgnore{});
404 }
405
406#if BX_CONFIG_EXCEPTION_HANDLING_USE_POSIX_SIGNALS
407 struct SignalInfo

Callers

nothing calls this directly

Calls 3

getCallStackFunction · 0.85
writeCallstackFunction · 0.85
getDebugOutFunction · 0.85

Tested by

no test coverage detected