Changeset 40397 in vbox for trunk/include
- Timestamp:
- Mar 7, 2012 9:52:38 PM (13 years ago)
- Location:
- trunk/include/VBox/vmm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/vm.h
r40235 r40397 94 94 /** Ring-0 Host Context VM Pointer. */ 95 95 PVMR0 pVMR0; 96 /** Flag indicating that tracing is enabled. */ 97 bool fTracingEnabled; 96 98 /** Alignment padding. */ 97 RTR0PTR pvR0Padding;99 uint8_t abAlignment0[HC_ARCH_BITS == 32 ? 3 : 7]; 98 100 /** Raw-mode Context VM Pointer. */ 99 101 PVMRC pVMRC; -
trunk/include/VBox/vmm/vm.mac
r40235 r40397 121 121 .pVMR3 RTR3PTR_RES 1 122 122 .pVMR0 RTR0PTR_RES 1 123 .pvR0Padding RTR0PTR_RES 1 123 .fTracingEnabled resb 1 124 %if HC_ARCH_BITS == 32 125 .abAlignment0 resb 3 126 %else 127 .abAlignment0 resb 7 128 %endif 124 129 .pVMRC RTRCPTR_RES 1 125 130 .idCpu resd 1
Note:
See TracChangeset
for help on using the changeset viewer.