Changeset 22070 in vbox for trunk/src/VBox/Main
- Timestamp:
- Aug 7, 2009 1:34:10 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ConsoleImpl2.cpp
r22048 r22070 244 244 { 245 245 /* 246 * We must limit CPUID count for Windows NT 4, 247 * as otherwise it stops with 0x3e error 248 * (MULTIPROCESSOR_CONFIGURATION_NOT_SUPPORTED). 246 * We must limit CPUID count for Windows NT 4, as otherwise it stops 247 * with error 0x3e (MULTIPROCESSOR_CONFIGURATION_NOT_SUPPORTED). 249 248 */ 250 249 LogRel(("Limiting CPUID leaf count for NT4 guests\n")); 251 rc = CFGMR3InsertInteger(pRoot, "NT4LeafLimit", true); RC_CHECK(); 250 PCFGMNODE pCPUM; 251 rc = CFGMR3InsertNode(pRoot, "CPUM", &pCPUM); RC_CHECK(); 252 rc = CFGMR3InsertInteger(pCPUM, "NT4LeafLimit", true); RC_CHECK(); 252 253 } 253 254
Note:
See TracChangeset
for help on using the changeset viewer.