forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Get rid of RtlCaptureContext import, manually implement it - Add support for older dbghelp versions. With this, backtraces on XP+ are supported out of the box. It seems that the "best" version for old systems is the one from VS2005, found in "Microsoft Visual Studio 8\Common7\IDE\dbghelp.dll". This one is compiled with 9x support (unlike the VS2003 one!).
- Loading branch information
Showing
3 changed files
with
3 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule backtrace
updated
9 files
+96 −0 | Cargo.lock | |
+6 −5 | Cargo.toml | |
+6 −2 | bindings.txt | |
+46 −9 | src/backtrace/dbghelp32.rs | |
+23 −19 | src/dbghelp.rs | |
+5 −3 | src/lib.rs | |
+195 −9 | src/symbolize/dbghelp.rs | |
+38 −23 | src/windows_sys.rs | |
+7 −0 | tests/windows-bindgen.rs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters