Changeset 47089 in vbox for trunk/src/VBox/VMM/VMMR0
- Timestamp:
- Jul 11, 2013 11:29:17 AM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 87167
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/VBox/VMM/VMMR0/HMSVMR0.cpp ¶
r47080 r47089 3050 3050 default: 3051 3051 AssertMsgFailed(("hmR0SvmHandleExit: Unexpected exit caused by exception %#x\n", Event.n.u8Vector)); 3052 pVCpu->hm.s.u32HMError = Event.n.u8Vector; 3052 3053 return VERR_SVM_UNEXPECTED_XCPT_EXIT; 3053 3054 } … … 3062 3063 { 3063 3064 AssertMsgFailed(("hmR0SvmHandleExit: Unknown exit code %#x\n", u32ExitCode)); 3065 pVCpu->hm.s.u32HMError = u32ExitCode; 3064 3066 return VERR_SVM_UNKNOWN_EXIT; 3065 3067 } … … 3347 3349 3348 3350 default: 3349 AssertMsgFailedReturn(("Unexpected patch type %d\n", pPatch->enmType), VERR_SVM_UNEXPECTED_PATCH_TYPE); 3350 break; 3351 AssertMsgFailed(("Unexpected patch type %d\n", pPatch->enmType)); 3352 pVCpu->hm.s.u32HMError = pPatch->enmType; 3353 return VERR_SVM_UNEXPECTED_PATCH_TYPE; 3351 3354 } 3352 3355 }
Note:
See TracChangeset
for help on using the changeset viewer.