Changeset 76402 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Dec 23, 2018 3:13:04 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 127701
- Location:
- trunk/src/VBox/VMM/VMMR3
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/APIC.cpp
r73281 r76402 1670 1670 * APIC device registration structure. 1671 1671 */ 1672 const PDMDEVREG g_DeviceAPIC =1672 static const PDMDEVREG g_DeviceAPIC = 1673 1673 { 1674 1674 /* u32Version */ … … 1723 1723 }; 1724 1724 1725 1726 /** 1727 * Called by PDM to register the APIC device. 1728 */ 1729 VMMR3_INT_DECL(int) APICR3RegisterDevice(PPDMDEVREGCB pCallbacks) 1730 { 1731 return pCallbacks->pfnRegister(pCallbacks, &g_DeviceAPIC); 1732 } 1733 1725 1734 #endif /* !VBOX_DEVICE_STRUCT_TESTCASE */ 1726 1735 -
trunk/src/VBox/VMM/VMMR3/EM.cpp
r75997 r76402 67 67 #include <VBox/dis.h> 68 68 #include <VBox/disopcode.h> 69 #include <VBox/err.h> 69 70 #include "VMMTracing.h" 70 71 -
trunk/src/VBox/VMM/VMMR3/GIMHv.cpp
r73389 r76402 32 32 #include <VBox/vmm/vm.h> 33 33 34 #include <VBox/err.h> 34 35 #include <VBox/version.h> 35 36 36 37 #include <iprt/assert.h> 37 #include <iprt/err.h>38 38 #include <iprt/string.h> 39 39 #include <iprt/mem.h> -
trunk/src/VBox/VMM/VMMR3/PDMDevice.cpp
r73097 r76402 495 495 * Load the internal VMM APIC device. 496 496 */ 497 int rc 2 = pdmR3DevReg_Register(&RegCB.Core, &g_DeviceAPIC);498 AssertRCReturn(rc 2, rc2);497 int rc = APICR3RegisterDevice(&RegCB.Core); 498 AssertRCReturn(rc, rc); 499 499 500 500 /* … … 503 503 PCFGMNODE pDevicesNode = CFGMR3GetChild(CFGMR3GetRoot(pVM), "PDM/Devices"); 504 504 bool fLoadBuiltin; 505 intrc = CFGMR3QueryBool(pDevicesNode, "LoadBuiltin", &fLoadBuiltin);505 rc = CFGMR3QueryBool(pDevicesNode, "LoadBuiltin", &fLoadBuiltin); 506 506 if (rc == VERR_CFGM_VALUE_NOT_FOUND || rc == VERR_CFGM_NO_PARENT) 507 507 fLoadBuiltin = true;
Note:
See TracChangeset
for help on using the changeset viewer.