Changeset 18889 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Apr 14, 2009 12:33:29 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PGM.cpp
r18880 r18889 1209 1209 } 1210 1210 1211 rc = CFGMR3QueryBoolDef(CFGMR3GetRoot(pVM), "RamPreAlloc", &pVM->pgm.s.fRamPreAlloc, false); 1211 rc = CFGMR3QueryBoolDef(CFGMR3GetRoot(pVM), "RamPreAlloc", &pVM->pgm.s.fRamPreAlloc, 1212 #ifdef VBOX_WITH_PREALLOC_RAM_BY_DEFAULT 1213 true 1214 #else 1215 false 1216 #endif 1217 ); 1212 1218 AssertLogRelRCReturn(rc, rc); 1213 1219
Note:
See TracChangeset
for help on using the changeset viewer.