Changeset 62646 in vbox for trunk/src/VBox/VMM/include/TRPMInternal.h
- Timestamp:
- Jul 28, 2016 9:57:29 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/TRPMInternal.h
r62645 r62646 95 95 * IMPORTANT! Keep the nasm version of this struct up-to-date. 96 96 */ 97 #pragma pack(4)98 97 typedef struct TRPM 99 98 { … … 133 132 /** RC Pointer to the IDT shadow area (aIdt) in HMA. */ 134 133 RCPTRTYPE(void *) pvMonShwIdtRC; 134 /** padding. */ 135 uint8_t au8Padding[2]; 135 136 /** Current (last) Guest's IDTR. */ 136 137 VBOXIDTR GuestIdtr; 137 /** padding. */138 uint8_t au8Padding[2];139 138 /** Shadow IDT virtual write access handler type. */ 140 139 PGMVIRTHANDLERTYPE hShadowIdtWriteHandlerType; … … 177 176 #endif 178 177 } TRPM; 179 #pragma pack() 178 AssertCompileMemberAlignment(TRPM, GuestIdtr.pIdt, 8); 180 179 181 180 /** Pointer to TRPM Data. */
Note:
See TracChangeset
for help on using the changeset viewer.