Changeset 81948 in vbox for trunk/include
- Timestamp:
- Nov 18, 2019 4:28:43 PM (5 years ago)
- Location:
- trunk/include/VBox/vmm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmapi.h
r81519 r81948 54 54 VMM_INT_DECL(bool) PDMHasApic(PVM pVM); 55 55 VMM_INT_DECL(int) PDMIoApicSetIrq(PVM pVM, uint8_t u8Irq, uint8_t u8Level, uint32_t uTagSrc); 56 VMM_INT_DECL( int)PDMIoApicBroadcastEoi(PVM pVM, uint8_t uVector);56 VMM_INT_DECL(VBOXSTRICTRC) PDMIoApicBroadcastEoi(PVM pVM, uint8_t uVector); 57 57 VMM_INT_DECL(int) PDMIoApicSendMsi(PVM pVM, RTGCPHYS GCAddr, uint32_t uValue, uint32_t uTagSrc); 58 58 VMM_INT_DECL(int) PDMVmmDevHeapR3ToGCPhys(PVM pVM, RTR3PTR pv, RTGCPHYS *pGCPhys); -
trunk/include/VBox/vmm/pdmdev.h
r81938 r81948 1473 1473 * 1474 1474 * @returns Strict VBox status code - only the following informational status codes: 1475 * @retval VINF_IOM_R3_MMIO_WRITE if the I/O APIC lock is contenteded and we're in R0 or RC. 21475 * @retval VINF_IOM_R3_MMIO_WRITE if the I/O APIC lock is contenteded and we're in R0 or RC. 1476 1476 * @retval VINF_SUCCESS 1477 1477 * … … 1482 1482 * Actually, as per 2018-07-21 this isn't true (bird). 1483 1483 */ 1484 DECLCALLBACKMEMBER( int, pfnSetEoi)(PPDMDEVINS pDevIns, uint8_t u8Vector);1484 DECLCALLBACKMEMBER(VBOXSTRICTRC, pfnSetEoi)(PPDMDEVINS pDevIns, uint8_t u8Vector); 1485 1485 1486 1486 /** Just a safety precaution. */
Note:
See TracChangeset
for help on using the changeset viewer.