Changeset 32369 in vbox
- Timestamp:
- Sep 9, 2010 4:56:18 PM (14 years ago)
- Location:
- trunk/src/VBox/Devices/VMMDev
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/VMMDev/VMMDev.cpp
r32352 r32369 541 541 else 542 542 { 543 if (pThis->fGuestCoreDump )543 if (pThis->fGuestCoreDumpEnabled) 544 544 { 545 545 PVM pVM = PDMDevHlpGetVM(pDevIns); … … 2898 2898 "RamSize|" 2899 2899 "RZEnabled|" 2900 "GuestCoreDump |"2900 "GuestCoreDumpEnabled|" 2901 2901 "TestingEnabled" 2902 2902 , … … 2933 2933 N_("Configuration error: Failed querying \"RZEnabled\" as a boolean")); 2934 2934 2935 rc = CFGMR3QueryBoolDef(pCfg, "GuestCoreDump ", &pThis->fGuestCoreDump, false);2935 rc = CFGMR3QueryBoolDef(pCfg, "GuestCoreDumpEnabled", &pThis->fGuestCoreDumpEnabled, false); 2936 2936 if (RT_FAILURE(rc)) 2937 2937 return PDMDEV_SET_ERROR(pDevIns, rc, 2938 N_("Configuration error: Failed querying \"GuestCoreDump \" as a boolean"));2938 N_("Configuration error: Failed querying \"GuestCoreDumpEnabled\" as a boolean")); 2939 2939 2940 2940 #ifndef VBOX_WITHOUT_TESTING_FEATURES -
trunk/src/VBox/Devices/VMMDev/VMMDevState.h
r32315 r32369 222 222 223 223 /** Guest Core Dumping enabled. */ 224 bool fGuestCoreDump ;224 bool fGuestCoreDumpEnabled; 225 225 226 226 /** Alignment padding. */
Note:
See TracChangeset
for help on using the changeset viewer.