Changeset 65850 in vbox for trunk/src/VBox/Devices/VMMDev
- Timestamp:
- Feb 23, 2017 10:16:04 AM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 113619
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/VMMDev/VMMDev.cpp
r65712 r65850 4018 4018 "KeepCredentials|" 4019 4019 "HeapEnabled|" 4020 "RamSize|"4021 4020 "RZEnabled|" 4022 4021 "GuestCoreDumpEnabled|" … … 4030 4029 , 4031 4030 ""); 4032 4033 rc = CFGMR3QueryU64(pCfg, "RamSize", &pThis->cbGuestRAM);4034 if (RT_FAILURE(rc))4035 return PDMDEV_SET_ERROR(pDevIns, rc,4036 N_("Configuration error: Failed querying \"RamSize\" as a 64-bit unsigned integer"));4037 4031 4038 4032 rc = CFGMR3QueryBoolDef(pCfg, "GetHostTimeDisabled", &pThis->fGetHostTimeDisabled, false); … … 4115 4109 /** @todo image-to-load-filename? */ 4116 4110 #endif 4111 4112 pThis->cbGuestRAM = MMR3PhysGetRamSize(PDMDevHlpGetVM(pDevIns)); 4117 4113 4118 4114 /*
Note:
See TracChangeset
for help on using the changeset viewer.