Changeset 107308 in vbox for trunk/src/VBox/VMM/include/GICInternal.h
- Timestamp:
- Dec 13, 2024 8:09:39 AM (2 months ago)
- svn:sync-xref-src-repo-rev:
- 166339
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/GICInternal.h
r106419 r107308 34 34 #include <VBox/gic.h> 35 35 #include <VBox/vmm/pdmdev.h> 36 #include <VBox/vmm/pdmgic.h> 37 #include <VBox/vmm/stam.h> 36 38 37 39 … … 41 43 * @{ 42 44 */ 45 46 #ifdef VBOX_INCLUDED_vmm_pdmgic_h 47 /** The VirtualBox GIC backend. */ 48 extern const PDMGICBACKEND g_GicBackend; 49 # ifdef RT_OS_DARWIN 50 /** The Hypervisor.Framework GIC backend. */ 51 extern const PDMGICBACKEND g_GicHvfBackend; 52 # endif 53 #endif 43 54 44 55 #define VMCPU_TO_GICCPU(a_pVCpu) (&(a_pVCpu)->gic.s) … … 103 114 /** The ring-3 device instance. */ 104 115 PPDMDEVINSR3 pDevInsR3; 105 /** Flag whether the in-kernel (KVM/Hyper-V) GIC of the NEM backend is used. */106 bool fNemGic;107 116 } GIC; 108 117 /** Pointer to GIC VM instance data. */
Note:
See TracChangeset
for help on using the changeset viewer.