File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1- //! Backtrace strategy for MSVC platforms.
1+ //! Backtrace strategy for Windows platforms.
22//!
3- //! This module contains the ability to generate a backtrace on MSVC using one
3+ //! This module contains the ability to generate a backtrace on Windows using one
44//! of two possible methods. The `StackWalkEx` function is primarily used if
55//! possible, but not all systems have that. Failing that the `StackWalk64`
66//! function is used instead. Note that `StackWalkEx` is favored because it
Original file line number Diff line number Diff line change 1- //! Backtrace strategy for MSVC `x86_64` and `aarch64` platforms.
1+ //! Backtrace strategy for Windows `x86_64` and `aarch64` platforms.
22//!
3- //! This module contains the ability to capture a backtrace on MSVC using
3+ //! This module contains the ability to capture a backtrace on Windows using
44//! `RtlVirtualUnwind` to walk the stack one frame at a time. This function is much faster than using
55//! `dbghelp!StackWalk*` because it does not load debug info to report inlined frames.
66//! We still report inlined frames during symbolization by consulting the appropriate
You can’t perform that action at this time.
0 commit comments