Changeset 20918 in vbox for trunk/src/VBox/Devices/PC/ACPI
- Timestamp:
- Jun 25, 2009 9:33:58 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/ACPI/VBoxAcpi.cpp
r20679 r20918 72 72 rc = CFGMR3QueryBoolDef(pDevIns->pCfgHandle, "ShowCpu", &fShowCpu, false); 73 73 if (RT_FAILURE(rc)) 74 return rc;74 return rc; 75 75 76 76 if (!fShowCpu) 77 cNumCpus = 0; 77 cNumCpus = 0; 78 79 #ifdef VBOX_WITH_MULTI_CORE 80 /* One physical package with multiple cores. */ 81 cNumCpus = 1; 82 #endif 78 83 79 84 /**
Note:
See TracChangeset
for help on using the changeset viewer.