Changeset 3291 in vbox for trunk/include/VBox
- Timestamp:
- Jun 26, 2007 2:15:04 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/err.h
r3208 r3291 1057 1057 /** Unable to switch due to invalid host state. */ 1058 1058 #define VERR_VMX_INVALID_HOST_STATE (-4007) 1059 /** IA32_FEATURE_CONTROL MSR not setup correcty (turn on VMX in the host system BIOS) */ 1060 #define VERR_VMX_ILLEGAL_FEATURE_CONTROL_MSR (-4008) 1061 /** VMX CPU extension not available */ 1062 #define VERR_VMX_NO_VMX (-4009) 1059 1063 /** @} */ 1060 1064 … … 1064 1068 /** Unable to start VM execution. */ 1065 1069 #define VERR_SVM_UNABLE_TO_START_VM (-4050) 1070 /** SVM bit not set in K6_EFER MSR */ 1071 #define VERR_SVM_ILLEGAL_EFER_MSR (-4051) 1072 /** SVM CPU extension not available. */ 1073 #define VERR_SVM_NO_SVM (-4052) 1074 /** @} */ 1075 1076 /** @name VBox HWACCM Status Codes 1077 * @{ 1078 */ 1079 /** Unable to start VM execution. */ 1080 #define VERR_HWACCM_UNKNOWN_CPU (-4100) 1081 /** No CPUID support. */ 1082 #define VERR_HWACCM_NO_CPUID (-4101) 1066 1083 /** @} */ 1067 1084
Note:
See TracChangeset
for help on using the changeset viewer.