mirror of
https://github.com/yuzu-emu/breakpad.git
synced 2024-11-27 23:14:24 +01:00
minidump_dump does not print MDRawSystemInfo::processor_revision. No bug.
r=bryner git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@48 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
parent
e5468b8a49
commit
0a7e6bf16c
@ -1887,6 +1887,8 @@ void MinidumpSystemInfo::Print() {
|
||||
system_info_.processor_architecture);
|
||||
printf(" processor_level = %d\n",
|
||||
system_info_.processor_level);
|
||||
printf(" processor_revision = 0x%x\n",
|
||||
system_info_.processor_revision);
|
||||
printf(" number_of_processors = %d\n",
|
||||
system_info_.number_of_processors);
|
||||
printf(" product_type = %d\n",
|
||||
@ -1903,8 +1905,6 @@ void MinidumpSystemInfo::Print() {
|
||||
system_info_.csd_version_rva);
|
||||
printf(" suite_mask = 0x%x\n",
|
||||
system_info_.suite_mask);
|
||||
printf(" reserved2 = 0x%x\n",
|
||||
system_info_.reserved2);
|
||||
for (unsigned int i = 0; i < 3; ++i) {
|
||||
printf(" cpu.x86_cpu_info.vendor_id[%d] = 0x%x\n",
|
||||
i, system_info_.cpu.x86_cpu_info.vendor_id[i]);
|
||||
|
2
src/processor/testdata/minidump1.out
vendored
2
src/processor/testdata/minidump1.out
vendored
@ -3709,6 +3709,7 @@ MDRawContextX86
|
||||
MDRawSystemInfo
|
||||
processor_architecture = 0
|
||||
processor_level = 6
|
||||
processor_revision = 0xd08
|
||||
number_of_processors = 1
|
||||
product_type = 1
|
||||
major_version = 5
|
||||
@ -3717,7 +3718,6 @@ MDRawSystemInfo
|
||||
platform_id = 2
|
||||
csd_version_rva = 0x3204
|
||||
suite_mask = 0x100
|
||||
reserved2 = 0x0
|
||||
cpu.x86_cpu_info.vendor_id[0] = 0x756e6547
|
||||
cpu.x86_cpu_info.vendor_id[1] = 0x49656e69
|
||||
cpu.x86_cpu_info.vendor_id[2] = 0x6c65746e
|
||||
|
Loading…
Reference in New Issue
Block a user