Changeset 57055 in vbox for trunk/include
- Timestamp:
- Jul 22, 2015 1:45:19 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 101776
- Location:
- trunk/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/err.h
r57051 r57055 2033 2033 * cache invalid. */ 2034 2034 #define VERR_VMX_PROC_EXEC2_CTLS_CACHE_INVALID (-4034) 2035 /** Failed to enable VMX bit while enablingthrough the MSR. */2035 /** Failed to set VMXON enable bit while enabling VT-x through the MSR. */ 2036 2036 #define VERR_VMX_MSR_VMX_ENABLE_FAILED (-4035) 2037 /** Failed to enable VMX -in-SMX bit while enablingthrough the MSR. */2037 /** Failed to enable VMXON-in-SMX bit while enabling VT-x through the MSR. */ 2038 2038 #define VERR_VMX_MSR_SMX_VMX_ENABLE_FAILED (-4036) 2039 2039 /** @} */ -
trunk/include/iprt/x86.h
r57051 r57055 1058 1058 #define MSR_IA32_FEATURE_CONTROL 0x3A 1059 1059 #define MSR_IA32_FEATURE_CONTROL_LOCK RT_BIT(0) 1060 #define MSR_IA32_FEATURE_CONTROL_SMX_VMX 1061 #define MSR_IA32_FEATURE_CONTROL_VMX 1060 #define MSR_IA32_FEATURE_CONTROL_SMX_VMXON RT_BIT(1) 1061 #define MSR_IA32_FEATURE_CONTROL_VMXON RT_BIT(2) 1062 1062 1063 1063 /** Per-processor TSC adjust MSR. */
Note:
See TracChangeset
for help on using the changeset viewer.