- Timestamp:
- Aug 11, 2008 10:03:07 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/CPUM.cpp
r11311 r11317 56 56 #include <iprt/asm.h> 57 57 #include <iprt/string.h> 58 #include <iprt/system.h> 58 #include <iprt/mp.h> 59 #include <iprt/cpuset.h> 59 60 60 61 … … 571 572 * Log the cpuid and we're good. 572 573 */ 573 LogRel(("Logical host processors: %d, processor active mask: %08x\n", 574 RTSystemProcessorGetCount(), RTSystemProcessorGetActiveMask())); 574 RTCPUSET OnlineSet; 575 LogRel(("Logical host processors: %d, processor active mask: %016RX64\n", 576 (int)RTMpGetCount(), RTCpuSetToU64(RTMpGetOnlineSet(&OnlineSet)) )); 575 577 LogRel(("************************* CPUID dump ************************\n")); 576 578 DBGFR3Info(pVM, "cpuid", "verbose", DBGFR3InfoLogRelHlp());
Note:
See TracChangeset
for help on using the changeset viewer.