Changeset 82039 in vbox for trunk/include
- Timestamp:
- Nov 20, 2019 5:22:21 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmdev.h
r81961 r82039 3742 3742 * @param pDevIns The device instance. 3743 3743 */ 3744 DECLR3CALLBACKMEMBER(int, pfnA PICRegister,(PPDMDEVINS pDevIns));3744 DECLR3CALLBACKMEMBER(int, pfnApicRegister,(PPDMDEVINS pDevIns)); 3745 3745 3746 3746 /** … … 5175 5175 5176 5176 /** 5177 * Sets up the APIC for the ring-0 context. 5178 * 5179 * This must be called after ring-3 has registered the APIC using 5180 * PDMDevHlpApicRegister(). 5181 * 5182 * @returns VBox status code. 5183 * @param pDevIns The device instance. 5184 */ 5185 DECLR0CALLBACKMEMBER(int, pfnApicSetUpContext,(PPDMDEVINS pDevIns)); 5186 5187 /** 5177 5188 * Sets up the IOAPIC for the ring-0 context. 5178 5189 * … … 5225 5236 5226 5237 /** Current PDMDEVHLP version number. */ 5227 #define PDM_DEVHLPR0_VERSION PDM_VERSION_MAKE(0xffe5, 1 4, 0)5238 #define PDM_DEVHLPR0_VERSION PDM_VERSION_MAKE(0xffe5, 15, 0) 5228 5239 5229 5240 … … 7704 7715 7705 7716 /** 7706 * @copydoc PDMDEVHLPR3::pfnA PICRegister7707 */ 7708 DECLINLINE(int) PDMDevHlpA PICRegister(PPDMDEVINS pDevIns)7709 { 7710 return pDevIns->pHlpR3->pfnA PICRegister(pDevIns);7717 * @copydoc PDMDEVHLPR3::pfnApicRegister 7718 */ 7719 DECLINLINE(int) PDMDevHlpApicRegister(PPDMDEVINS pDevIns) 7720 { 7721 return pDevIns->pHlpR3->pfnApicRegister(pDevIns); 7711 7722 } 7712 7723 … … 7857 7868 { 7858 7869 return pDevIns->CTX_SUFF(pHlp)->pfnPICSetUpContext(pDevIns, pPicReg, ppPicHlp); 7870 } 7871 7872 /** 7873 * @copydoc PDMDEVHLPR0::pfnApicSetUpContext 7874 */ 7875 DECLINLINE(int) PDMDevHlpApicSetUpContext(PPDMDEVINS pDevIns) 7876 { 7877 return pDevIns->CTX_SUFF(pHlp)->pfnApicSetUpContext(pDevIns); 7859 7878 } 7860 7879
Note:
See TracChangeset
for help on using the changeset viewer.