MCPcopy Create free account
hub / github.com/crownengine/crown / getCallStackWinRtl

Function getCallStackWinRtl

3rdparty/bx/src/debug.cpp:500–508  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

498 }
499
500 BX_NO_INLINE uint32_t getCallStackWinRtl(uint32_t _skip, uint32_t _max, uintptr_t* _outStack)
501 {
502#if BX_PLATFORM_WINDOWS
503 return RtlCaptureStackBackTrace(_skip + 1 /* skip self */, _max, (void**)_outStack, NULL);
504#else
505 BX_UNUSED(_skip, _max, _outStack);
506 return 0;
507#endif // BX_PLATFORM_WINDOWS
508 }
509
510 BX_NO_INLINE uint32_t getCallStackWinAbi(uint32_t _skip, uint32_t _max, uintptr_t* _outStack)
511 {

Callers 2

getCallStackWinAbiFunction · 0.85
getCallStackExactFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected