Changeset 104386 in vbox for trunk/include
- Timestamp:
- Apr 20, 2024 7:05:54 PM (9 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/gic.h
r99734 r104386 52 52 #ifdef VBOX_INCLUDED_vmm_pdmdev_h 53 53 extern const PDMDEVREG g_DeviceGIC; 54 # ifdef RT_OS_LINUX 55 extern const PDMDEVREG g_DeviceGICKvm; 56 # endif 54 57 #endif 55 58 … … 67 70 VMMR3_INT_DECL(int) GICR3RegisterDevice(struct PDMDEVREGCB *pCallbacks); 68 71 VMMR3_INT_DECL(void) GICR3InitIpi(PVMCPU pVCpu); 72 73 # ifdef RT_OS_LINUX 74 /* Access to the in-kernel KVM GICv3. */ 75 VMMR3_INT_DECL(int) GICR3KvmSpiSet(PVMCC pVM, uint32_t uIntId, bool fAsserted); 76 VMMR3_INT_DECL(int) GICR3KvmPpiSet(PVMCPUCC pVCpu, uint32_t uIntId, bool fAsserted); 77 # endif 69 78 /** @} */ 70 79 #endif /* IN_RING3 */
Note:
See TracChangeset
for help on using the changeset viewer.