| 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 |
nothing calls this directly
no test coverage detected