Changeset 47072 in vbox
- Timestamp:
- Jul 10, 2013 12:04:05 PM (12 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/err.h
r46655 r47072 1937 1937 /** Unable to start VM execution due to an invalid guest state. */ 1938 1938 #define VERR_SVM_INVALID_GUEST_STATE (-4059) 1939 /** Unknown or unrecognized SVM exit. */ 1940 #define VERR_SVM_UNKNOWN_EXIT (-4060) 1939 1941 /** @} */ 1940 1942 -
trunk/src/VBox/VMM/VMMR0/HMSVMR0.cpp
r47056 r47072 3036 3036 default: 3037 3037 { 3038 AssertMsgFailed(("hmR0SvmHandleExit: Un expectedexit code %#x\n", u32ExitCode));3039 return VERR_SVM_UN EXPECTED_EXIT;3038 AssertMsgFailed(("hmR0SvmHandleExit: Unknown exit code %#x\n", u32ExitCode)); 3039 return VERR_SVM_UNKNOWN_EXIT; 3040 3040 } 3041 3041 }
Note:
See TracChangeset
for help on using the changeset viewer.