Changeset 58331 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Oct 20, 2015 11:25:21 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/GIMHvInternal.h
r58313 r58331 944 944 /** 945 945 * Type of the next reply to be sent to the debug connection of the guest. 946 * 947 * @remarks This is saved as part of saved-state, so don't re-order or 948 * alter the size! 946 949 */ 947 950 typedef enum GIMHVDEBUGREPLY … … 964 967 GIMHVDEBUGREPLY_32BIT_HACK = 0x7fff0000 965 968 } GIMHVDEBUGREPLY; 966 AssertCompileSize(GIMHVDEBUGREPLY, 4);969 AssertCompileSize(GIMHVDEBUGREPLY, sizeof(uint32_t)); 967 970 968 971 /** … … 1002 1005 */ 1003 1006 /** Guest crash control MSR. */ 1004 uint64_t uCrashCtl ;1007 uint64_t uCrashCtlMsr; 1005 1008 /** Guest crash parameter 0 MSR. */ 1006 uint64_t uCrashP0 ;1009 uint64_t uCrashP0Msr; 1007 1010 /** Guest crash parameter 1 MSR. */ 1008 uint64_t uCrashP1 ;1011 uint64_t uCrashP1Msr; 1009 1012 /** Guest crash parameter 2 MSR. */ 1010 uint64_t uCrashP2 ;1013 uint64_t uCrashP2Msr; 1011 1014 /** Guest crash parameter 3 MSR. */ 1012 uint64_t uCrashP3 ;1015 uint64_t uCrashP3Msr; 1013 1016 /** Guest crash parameter 4 MSR. */ 1014 uint64_t uCrashP4 ;1017 uint64_t uCrashP4Msr; 1015 1018 /** @} */ 1016 1019 … … 1046 1049 bool afAlignment0[6]; 1047 1050 /** The auto IP address last chosen by the guest after failed ARP queries. */ 1048 RTNETADDRIPV4 DbgGuest Addr;1051 RTNETADDRIPV4 DbgGuestIp4Addr; 1049 1052 /** The action to take while sending replies. */ 1050 1053 GIMHVDEBUGREPLY enmDebugReply;
Note:
See TracChangeset
for help on using the changeset viewer.