-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix handling of corrupting state exceptions (#103048)
* Fix handling of corrupting state exceptions The new EH is not correctly handling corrupting state exceptions. Instead of failing fast, the exceptions are actually handled like other exceptions and can be caught by the user code. This change fixes it. Besides fixing the issue, I had to introduce a way to trim exception handling code frames from the stack trace reported by the failfast, otherwise the output would be confusing. As an additional change, I've noticed that hardware exceptions under WinDbg don't trigger the WinDbg first chance exception mechanism. I've recently fixed the same for software exceptions, this adds the same for hardware ones. Close #103018 * Remove the WinDbg first chance notification
- Loading branch information
Showing
2 changed files
with
53 additions
and
6 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
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