Changeset 78438 in vbox for trunk/include/VBox
- Timestamp:
- May 7, 2019 3:57:37 PM (6 years ago)
- Location:
- trunk/include/VBox/vmm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/gvm.h
r78431 r78438 67 67 68 68 /** Pointer to the global (ring-0) VM structure this CPU belongs to. */ 69 PGVMpGVM;69 R0PTRTYPE(PGVM) pGVM; 70 70 #ifndef VBOX_BUGREF_9217 71 71 /** Pointer to the corresponding cross context CPU structure. */ … … 95 95 union 96 96 { 97 # if def VMM_INCLUDED_SRC_include_NEMInternal_h97 # if defined(VMM_INCLUDED_SRC_include_NEMInternal_h) && defined(IN_RING0) 98 98 struct NEMR0PERVCPU s; 99 99 # endif … … 206 206 union 207 207 { 208 # if def VMM_INCLUDED_SRC_include_NEMInternal_h208 # if defined(VMM_INCLUDED_SRC_include_NEMInternal_h) && defined(IN_RING0) 209 209 struct NEMR0PERVM s; 210 210 # endif -
trunk/include/VBox/vmm/vm.h
r78431 r78438 315 315 316 316 #ifndef VBOX_FOR_DTRACE_LIB 317 AssertCompileSizeAlignment(VMCPU, 4096); 317 318 318 319 /** @name Operations on VMCPU::enmState … … 1633 1634 extern DECLIMPORT(VM) g_VM; 1634 1635 1636 /** The VMCPU structure for virtual CPU \#0. 1637 * This is imported from the VMMRCBuiltin module, i.e. it's a one of those magic 1638 * globals which we should avoid using. 1639 */ 1640 extern DECLIMPORT(VMCPU) g_VCpu0; 1641 1635 1642 RT_C_DECLS_END 1636 1643 #endif
Note:
See TracChangeset
for help on using the changeset viewer.