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
2 changed files with 3 additions and 3 deletions
|
@ -1887,6 +1887,8 @@ void MinidumpSystemInfo::Print() {
|
||||||
system_info_.processor_architecture);
|
system_info_.processor_architecture);
|
||||||
printf(" processor_level = %d\n",
|
printf(" processor_level = %d\n",
|
||||||
system_info_.processor_level);
|
system_info_.processor_level);
|
||||||
|
printf(" processor_revision = 0x%x\n",
|
||||||
|
system_info_.processor_revision);
|
||||||
printf(" number_of_processors = %d\n",
|
printf(" number_of_processors = %d\n",
|
||||||
system_info_.number_of_processors);
|
system_info_.number_of_processors);
|
||||||
printf(" product_type = %d\n",
|
printf(" product_type = %d\n",
|
||||||
|
@ -1903,8 +1905,6 @@ void MinidumpSystemInfo::Print() {
|
||||||
system_info_.csd_version_rva);
|
system_info_.csd_version_rva);
|
||||||
printf(" suite_mask = 0x%x\n",
|
printf(" suite_mask = 0x%x\n",
|
||||||
system_info_.suite_mask);
|
system_info_.suite_mask);
|
||||||
printf(" reserved2 = 0x%x\n",
|
|
||||||
system_info_.reserved2);
|
|
||||||
for (unsigned int i = 0; i < 3; ++i) {
|
for (unsigned int i = 0; i < 3; ++i) {
|
||||||
printf(" cpu.x86_cpu_info.vendor_id[%d] = 0x%x\n",
|
printf(" cpu.x86_cpu_info.vendor_id[%d] = 0x%x\n",
|
||||||
i, system_info_.cpu.x86_cpu_info.vendor_id[i]);
|
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
|
MDRawSystemInfo
|
||||||
processor_architecture = 0
|
processor_architecture = 0
|
||||||
processor_level = 6
|
processor_level = 6
|
||||||
|
processor_revision = 0xd08
|
||||||
number_of_processors = 1
|
number_of_processors = 1
|
||||||
product_type = 1
|
product_type = 1
|
||||||
major_version = 5
|
major_version = 5
|
||||||
|
@ -3717,7 +3718,6 @@ MDRawSystemInfo
|
||||||
platform_id = 2
|
platform_id = 2
|
||||||
csd_version_rva = 0x3204
|
csd_version_rva = 0x3204
|
||||||
suite_mask = 0x100
|
suite_mask = 0x100
|
||||||
reserved2 = 0x0
|
|
||||||
cpu.x86_cpu_info.vendor_id[0] = 0x756e6547
|
cpu.x86_cpu_info.vendor_id[0] = 0x756e6547
|
||||||
cpu.x86_cpu_info.vendor_id[1] = 0x49656e69
|
cpu.x86_cpu_info.vendor_id[1] = 0x49656e69
|
||||||
cpu.x86_cpu_info.vendor_id[2] = 0x6c65746e
|
cpu.x86_cpu_info.vendor_id[2] = 0x6c65746e
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue