Changeset 76402 in vbox for trunk/include
- Timestamp:
- Dec 23, 2018 3:13:04 PM (6 years ago)
- Location:
- trunk/include/VBox/vmm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/apic.h
r75300 r76402 27 27 #define ___VBox_vmm_apic_h 28 28 29 #include <VBox/ vmm/pdmins.h>30 #include <VBox/vmm/pdmdev.h> 29 #include <VBox/types.h> 30 struct PDMDEVREGCB; 31 31 32 32 /** @defgroup grp_apic The local APIC VMM API … … 158 158 * @{ 159 159 */ 160 VMMR3_INT_DECL(int) APICR3RegisterDevice(struct PDMDEVREGCB *pCallbacks); 160 161 VMMR3_INT_DECL(void) APICR3InitIpi(PVMCPU pVCpu); 161 162 VMMR3_INT_DECL(void) APICR3HvEnable(PVM pVM); … … 201 202 RT_C_DECLS_END 202 203 203 extern const PDMDEVREG g_DeviceAPIC;204 204 /** @} */ 205 205 -
trunk/include/VBox/vmm/pdmdev.h
r75534 r76402 29 29 #include <VBox/vmm/pdmqueue.h> 30 30 #include <VBox/vmm/pdmcritsect.h> 31 #include <VBox/vmm/pdmthread.h> 31 #ifdef IN_RING3 32 # include <VBox/vmm/pdmthread.h> 33 #endif 32 34 #include <VBox/vmm/pdmifs.h> 33 35 #include <VBox/vmm/pdmins.h> … … 39 41 #include <VBox/vmm/cfgm.h> 40 42 #include <VBox/vmm/dbgf.h> 41 #include <VBox/err.h> 42 #include <VBox/pci.h> 43 #include <VBox/sup.h> 43 #include <VBox/err.h> /* VINF_EM_DBG_STOP */ 44 44 #include <iprt/stdarg.h> 45 45
Note:
See TracChangeset
for help on using the changeset viewer.