Changeset 82067 in vbox
- Timestamp:
- Nov 21, 2019 9:01:45 AM (5 years ago)
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/PDMDevHlp.cpp
r82049 r82067 3713 3713 3714 3714 3715 /** @interface_method_impl{PDMDEVHLPR3,pfnA PICRegister} */3715 /** @interface_method_impl{PDMDEVHLPR3,pfnApicRegister} */ 3716 3716 static DECLCALLBACK(int) pdmR3DevHlp_ApicRegister(PPDMDEVINS pDevIns) 3717 3717 { -
trunk/src/VBox/VMM/include/PDMInternal.h
r81961 r82067 668 668 /** Pointer to the APIC device instance - R3 Ptr. */ 669 669 PPDMDEVINSR3 pDevInsR3; 670 /** @copydoc PDMIOAPICREG::pfnSetIrq R3*/670 /** @copydoc PDMIOAPICREG::pfnSetIrq */ 671 671 DECLR3CALLBACKMEMBER(void, pfnSetIrqR3,(PPDMDEVINS pDevIns, int iIrq, int iLevel, uint32_t uTagSrc)); 672 /** @copydoc PDMIOAPICREG::pfnSendMsi R3*/672 /** @copydoc PDMIOAPICREG::pfnSendMsi */ 673 673 DECLR3CALLBACKMEMBER(void, pfnSendMsiR3,(PPDMDEVINS pDevIns, RTGCPHYS GCAddr, uint32_t uValue, uint32_t uTagSrc)); 674 /** @copydoc PDMIOAPICREG::pfnSetEoi R3*/674 /** @copydoc PDMIOAPICREG::pfnSetEoi */ 675 675 DECLR3CALLBACKMEMBER(VBOXSTRICTRC, pfnSetEoiR3,(PPDMDEVINS pDevIns, uint8_t u8Vector)); 676 676 677 677 /** Pointer to the PIC device instance - R0. */ 678 678 PPDMDEVINSR0 pDevInsR0; 679 /** @copydoc PDMIOAPICREG::pfnSetIrq R3*/679 /** @copydoc PDMIOAPICREG::pfnSetIrq */ 680 680 DECLR0CALLBACKMEMBER(void, pfnSetIrqR0,(PPDMDEVINS pDevIns, int iIrq, int iLevel, uint32_t uTagSrc)); 681 /** @copydoc PDMIOAPICREG::pfnSendMsi R3*/681 /** @copydoc PDMIOAPICREG::pfnSendMsi */ 682 682 DECLR0CALLBACKMEMBER(void, pfnSendMsiR0,(PPDMDEVINS pDevIns, RTGCPHYS GCAddr, uint32_t uValue, uint32_t uTagSrc)); 683 /** @copydoc PDMIOAPICREG::pfnSetEoi R3*/683 /** @copydoc PDMIOAPICREG::pfnSetEoi */ 684 684 DECLR0CALLBACKMEMBER(VBOXSTRICTRC, pfnSetEoiR0,(PPDMDEVINS pDevIns, uint8_t u8Vector)); 685 685 686 686 /** Pointer to the APIC device instance - RC Ptr. */ 687 687 PPDMDEVINSRC pDevInsRC; 688 /** @copydoc PDMIOAPICREG::pfnSetIrq R3*/688 /** @copydoc PDMIOAPICREG::pfnSetIrq */ 689 689 DECLRCCALLBACKMEMBER(void, pfnSetIrqRC,(PPDMDEVINS pDevIns, int iIrq, int iLevel, uint32_t uTagSrc)); 690 /** @copydoc PDMIOAPICREG::pfnSendMsi R3*/690 /** @copydoc PDMIOAPICREG::pfnSendMsi */ 691 691 DECLRCCALLBACKMEMBER(void, pfnSendMsiRC,(PPDMDEVINS pDevIns, RTGCPHYS GCAddr, uint32_t uValue, uint32_t uTagSrc)); 692 /** @copydoc PDMIOAPICREG::pfnSendMsi R3*/692 /** @copydoc PDMIOAPICREG::pfnSendMsi */ 693 693 DECLRCCALLBACKMEMBER(VBOXSTRICTRC, pfnSetEoiRC,(PPDMDEVINS pDevIns, uint8_t u8Vector)); 694 694 } PDMIOAPIC;
Note:
See TracChangeset
for help on using the changeset viewer.