Changeset 18292 in vbox for trunk/src/VBox/Main/ConsoleImpl2.cpp
- Timestamp:
- Mar 26, 2009 5:20:39 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ConsoleImpl2.cpp
r18208 r18292 192 192 hrc = pMachine->COMGETTER(MemorySize)(&cRamMBs); H(); 193 193 #if 0 /* enable to play with lots of memory. */ 194 cRamMBs = 8* 1024;194 cRamMBs = 512 * 1024; 195 195 #endif 196 196 uint64_t const cbRam = cRamMBs * (uint64_t)_1M; … … 240 240 #ifdef RT_OS_DARWIN 241 241 rc = CFGMR3InsertInteger(pRoot, "HwVirtExtForced", fHWVirtExEnabled); RC_CHECK(); 242 #elif defined(VBOX_WITH_NEW_PHYS_CODE) 243 /* With more than 4GB PGM will use different RAMRANGE sizes for raw mode and hv mode to optimize lookup times. */ 244 rc = CFGMR3InsertInteger(pRoot, "HwVirtExtForced", fHWVirtExEnabled && cbRam > (_4G - cbRamHole)); RC_CHECK(); 242 245 #else 243 246 rc = CFGMR3InsertInteger(pRoot, "HwVirtExtForced", 0); RC_CHECK(); … … 1880 1883 H(); 1881 1884 } 1882 1885 1883 1886 if(bEnabled) 1884 1887 hrc = dhcpServer->Start(networkName, trunkName, trunkType);
Note:
See TracChangeset
for help on using the changeset viewer.