File tree 2 files changed +4
-4
lines changed 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.
2
2
//!
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
4
4
//! of two possible methods. The `StackWalkEx` function is primarily used if
5
5
//! possible, but not all systems have that. Failing that the `StackWalk64`
6
6
//! 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.
2
2
//!
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
4
4
//! `RtlVirtualUnwind` to walk the stack one frame at a time. This function is much faster than using
5
5
//! `dbghelp!StackWalk*` because it does not load debug info to report inlined frames.
6
6
//! We still report inlined frames during symbolization by consulting the appropriate
You can’t perform that action at this time.
0 commit comments