Issue 143 - MinidumpProcessor should extract number of processors. r=mento

git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@180 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
ted.mielczarek 2007-05-30 12:14:09 +00:00
parent 0e94332f7c
commit 90e050e598
3 changed files with 18 additions and 3 deletions

View file

@ -290,6 +290,8 @@ bool MinidumpProcessor::GetCPUInfo(Minidump *dump, SystemInfo *info) {
}
}
info->cpu_count = raw_system_info->number_of_processors;
return true;
}