Changeset 12563 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Sep 18, 2008 12:04:24 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/DevAPIC.cpp
r12555 r12563 1668 1668 } 1669 1669 1670 static inline intregisterAPIC(APICState *pThis, PPDMDEVINS pDevIns, PCFGMNODE pCfgHandle, bool fR0Enabled, bool fGCEnabled)1670 DECLINLINE(int) registerAPIC(APICState *pThis, PPDMDEVINS pDevIns, PCFGMNODE pCfgHandle, bool fR0Enabled, bool fGCEnabled) 1671 1671 { 1672 1672 PDMAPICREG ApicReg; 1673 1673 int rc; 1674 1674 1675 1675 /* 1676 1676 * Register the APIC. … … 1726 1726 return rc; 1727 1727 } 1728 1728 1729 1729 return VINF_SUCCESS; 1730 1730 } … … 1750 1750 * Validate configuration. 1751 1751 */ 1752 if (!CFGMR3AreValuesValid(pCfgHandle, 1752 if (!CFGMR3AreValuesValid(pCfgHandle, 1753 1753 "IOAPIC\0" 1754 1754 "GCEnabled\0" 1755 1755 "R0Enabled\0")) 1756 1756 return VERR_PDM_DEVINS_UNKNOWN_CFG_VALUES; 1757 1757 1758 1758 rc = CFGMR3QueryBoolDef(pCfgHandle, "IOAPIC", &fIOAPIC, true); 1759 1759 if (RT_FAILURE(rc))
Note:
See TracChangeset
for help on using the changeset viewer.