Changeset 76311 in vbox for trunk/include
- Timestamp:
- Dec 20, 2018 12:45:01 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/hm_svm.h
r75611 r76311 1018 1018 1019 1019 /** 1020 * SVM MSRs. 1021 */ 1022 typedef struct SVMMSRS 1023 { 1024 /** HWCR MSR. */ 1025 uint64_t u64MsrHwcr; 1026 /** Reserved for future. */ 1027 uint64_t u64Padding[23]; 1028 } SVMMSRS; 1029 AssertCompileSizeAlignment(SVMMSRS, 8); 1030 AssertCompileSize(SVMMSRS, 192); 1031 /** Pointer to a SVMMSRS struct. */ 1032 typedef SVMMSRS *PSVMMSRS; 1033 /** Pointer to a const SVMMSRS struct. */ 1034 typedef const SVMMSRS *PCSVMMSRS; 1035 1036 /** 1020 1037 * SVM nested-guest VMCB cache. 1021 1038 *
Note:
See TracChangeset
for help on using the changeset viewer.