Changeset 20679 in vbox for trunk/src/VBox/Main
- Timestamp:
- Jun 18, 2009 10:38:52 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ConsoleImpl2.cpp
r20677 r20679 661 661 if (fACPI) 662 662 { 663 BOOL fShowCpu = fExtProfile; 664 /* Always show the CPU leafs when we have multiple VCPUs or when the IO-APIC is enabled. 665 * The Windows SMP kernel needs a CPU leaf or else its idle loop will burn cpu cycles; the 666 * intelppm driver refuses to register an idle state handler. 667 */ 668 if ((cCpus > 1) || fIOAPIC) 669 fShowCpu = true; 670 663 671 rc = CFGMR3InsertNode(pDevices, "acpi", &pDev); RC_CHECK(); 664 672 rc = CFGMR3InsertNode(pDev, "0", &pInst); RC_CHECK(); … … 678 686 #endif 679 687 rc = CFGMR3InsertInteger(pCfg, "ShowRtc", fExtProfile); RC_CHECK(); 680 rc = CFGMR3InsertInteger(pCfg, "ShowCpu", fExtProfile); RC_CHECK(); 688 689 rc = CFGMR3InsertInteger(pCfg, "ShowCpu", fShowCpu); RC_CHECK(); 681 690 rc = CFGMR3InsertInteger(pInst, "PCIDeviceNo", 7); RC_CHECK(); 682 691 Assert(!afPciDeviceNo[7]);
Note:
See TracChangeset
for help on using the changeset viewer.