| 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 | { |
no outgoing calls
no test coverage detected