Changeset 81922 in vbox
- Timestamp:
- Nov 17, 2019 10:05:41 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/PDMInternal.h
r81909 r81922 623 623 /** Pointer to the PIC device instance - R3. */ 624 624 PPDMDEVINSR3 pDevInsR3; 625 /** @copydoc PDMPICREG::pfnSetIrq R3*/625 /** @copydoc PDMPICREG::pfnSetIrq */ 626 626 DECLR3CALLBACKMEMBER(void, pfnSetIrqR3,(PPDMDEVINS pDevIns, int iIrq, int iLevel, uint32_t uTagSrc)); 627 /** @copydoc PDMPICREG::pfnGetInterrupt R3*/627 /** @copydoc PDMPICREG::pfnGetInterrupt */ 628 628 DECLR3CALLBACKMEMBER(int, pfnGetInterruptR3,(PPDMDEVINS pDevIns, uint32_t *puTagSrc)); 629 629 630 630 /** Pointer to the PIC device instance - R0. */ 631 631 PPDMDEVINSR0 pDevInsR0; 632 /** @copydoc PDMPICREG::pfnSetIrq R3*/632 /** @copydoc PDMPICREG::pfnSetIrq */ 633 633 DECLR0CALLBACKMEMBER(void, pfnSetIrqR0,(PPDMDEVINS pDevIns, int iIrq, int iLevel, uint32_t uTagSrc)); 634 /** @copydoc PDMPICREG::pfnGetInterrupt R3*/634 /** @copydoc PDMPICREG::pfnGetInterrupt */ 635 635 DECLR0CALLBACKMEMBER(int, pfnGetInterruptR0,(PPDMDEVINS pDevIns, uint32_t *puTagSrc)); 636 636 637 637 /** Pointer to the PIC device instance - RC. */ 638 638 PPDMDEVINSRC pDevInsRC; 639 /** @copydoc PDMPICREG::pfnSetIrq R3*/639 /** @copydoc PDMPICREG::pfnSetIrq */ 640 640 DECLRCCALLBACKMEMBER(void, pfnSetIrqRC,(PPDMDEVINS pDevIns, int iIrq, int iLevel, uint32_t uTagSrc)); 641 /** @copydoc PDMPICREG::pfnGetInterrupt R3*/641 /** @copydoc PDMPICREG::pfnGetInterrupt */ 642 642 DECLRCCALLBACKMEMBER(int, pfnGetInterruptRC,(PPDMDEVINS pDevIns, uint32_t *puTagSrc)); 643 643 /** Alignment padding. */
Note:
See TracChangeset
for help on using the changeset viewer.