forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix crashreport for stack overflow (dotnet#57428)
* Fix crashreport for stack overflow Issue: dotnet#57032 The stack overflow managed exception wasn't been set/written out. Changed the "unmanaged_frames" value to "stack_frames" because it includes both native and managed frames. Aggregated the repeated stack frames adding a "repeated"/repeated_frames value/array for the time of times the sequence was repeated. Looks like this: { "repeated" : "0x1542", "repeated_frames" : [ { "is_managed" : "true", "module_address" : "0x10e402000", "stack_pointer" : "0x7000045ce020", "native_address" : "0x11b9ee8c9", "native_offset" : "0x29", "token" : "0x600006f", "il_offset" : "0x0", "method_name" : "Macson.Client.Diagnostics.CrashyClass.Foo2()", "timestamp" : "0xa8561820", "sizeofimage" : "0xe000", "filename" : "Macson.Client.dll", "guid" : "49cd869a682942bc95c0c34ca206c61d" }, { "is_managed" : "true", "module_address" : "0x10e402000", "stack_pointer" : "0x7000045ce040", "native_address" : "0x11b9ee879", "native_offset" : "0x29", "token" : "0x6000070", "il_offset" : "0x0", "method_name" : "Macson.Client.Diagnostics.CrashyClass.Foo1()", ... }, ] } * Update createdump doc * Fix Windows triage dump flags * Code review feedback
- Loading branch information
Showing
7 changed files
with
134 additions
and
38 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
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
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
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