diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-19 20:43:46 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-19 20:43:46 +0000 |
commit | 76daa8ef51cc0b2c0df5548434f8b2e71a58a84c (patch) | |
tree | 89446f5660932b1dae58bdb6898cee08b80f981a /breakpad | |
parent | 258e8970224599686f320fe75044e1043ef87222 (diff) | |
download | chromium_src-76daa8ef51cc0b2c0df5548434f8b2e71a58a84c.zip chromium_src-76daa8ef51cc0b2c0df5548434f8b2e71a58a84c.tar.gz chromium_src-76daa8ef51cc0b2c0df5548434f8b2e71a58a84c.tar.bz2 |
MDRawSystemInfo.processor_level refers to the CPU family, not the cpuid level.
BUG=none
TEST=Intel Core 2 should show up as family 6 model 15 instead of family 10 model 15.
Review URL: http://codereview.chromium.org/295009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29452 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'breakpad')
-rw-r--r-- | breakpad/linux/minidump_writer.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/breakpad/linux/minidump_writer.cc b/breakpad/linux/minidump_writer.cc index 333e6b1..5252950 100644 --- a/breakpad/linux/minidump_writer.cc +++ b/breakpad/linux/minidump_writer.cc @@ -640,7 +640,7 @@ class MinidumpWriter { { "processor", -1, false }, { "model", 0, false }, { "stepping", 0, false }, - { "cpuid level", 0, false }, + { "cpu family", 0, false }, }; // processor_architecture should always be set, do this first |