VirtualBox

Changeset 32369 in vbox


Ignore:
Timestamp:
Sep 9, 2010 4:56:18 PM (14 years ago)
Author:
vboxsync
Message:

VMMDev: GuestCoreDump -> GuestCoreDumpEnabled.

Location:
trunk/src/VBox/Devices/VMMDev
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/VMMDev/VMMDev.cpp

    r32352 r32369  
    541541            else
    542542            {
    543                 if (pThis->fGuestCoreDump)
     543                if (pThis->fGuestCoreDumpEnabled)
    544544                {
    545545                    PVM pVM = PDMDevHlpGetVM(pDevIns);
     
    28982898                                  "RamSize|"
    28992899                                  "RZEnabled|"
    2900                                   "GuestCoreDump|"
     2900                                  "GuestCoreDumpEnabled|"
    29012901                                  "TestingEnabled"
    29022902                                  ,
     
    29332933                                N_("Configuration error: Failed querying \"RZEnabled\" as a boolean"));
    29342934
    2935     rc = CFGMR3QueryBoolDef(pCfg, "GuestCoreDump", &pThis->fGuestCoreDump, false);
     2935    rc = CFGMR3QueryBoolDef(pCfg, "GuestCoreDumpEnabled", &pThis->fGuestCoreDumpEnabled, false);
    29362936    if (RT_FAILURE(rc))
    29372937        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"));
    29392939
    29402940#ifndef VBOX_WITHOUT_TESTING_FEATURES
  • trunk/src/VBox/Devices/VMMDev/VMMDevState.h

    r32315 r32369  
    222222
    223223    /** Guest Core Dumping enabled. */
    224     bool fGuestCoreDump;
     224    bool fGuestCoreDumpEnabled;
    225225
    226226    /** Alignment padding. */
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette