mirror of
https://git.suyu.dev/suyu/breakpad.git
synced 2026-01-04 05:34:45 +01:00
Add some new stream types to MDStreamType
I ran minidump_dump on a dump from Firefox on my Windows 10 machine and noticed some streams that Breakpad didn't have names for. Looking in minidumpapiset.h in the Windows 10 SDK finds these values in MINIDUMP_STREAM_TYPE. There are also struct definitions for the stream data for some of them (all but JavaScriptData), but I don't have a particular need for those currently. R=mark@chromium.org BUG= Review URL: https://codereview.chromium.org/1884943002 .
This commit is contained in:
parent
0203b0cbdd
commit
fee47f4638
2 changed files with 12 additions and 0 deletions
|
|
@ -328,6 +328,10 @@ typedef enum {
|
|||
MD_MEMORY_INFO_LIST_STREAM = 16, /* MDRawMemoryInfoList */
|
||||
MD_THREAD_INFO_LIST_STREAM = 17,
|
||||
MD_HANDLE_OPERATION_LIST_STREAM = 18,
|
||||
MD_TOKEN_STREAM = 19,
|
||||
MD_JAVASCRIPT_DATA_STREAM = 20,
|
||||
MD_SYSTEM_MEMORY_INFO_STREAM = 21,
|
||||
MD_PROCESS_VM_COUNTERS_STREAM = 22,
|
||||
MD_LAST_RESERVED_STREAM = 0x0000ffff,
|
||||
|
||||
/* Breakpad extension types. 0x4767 = "Gg" */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue