Changeset 67783 in vbox
- Timestamp:
- Jul 5, 2017 4:09:04 AM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 116700
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMVMXR0.cpp
r67136 r67783 8242 8242 case X86_XCPT_GP: 8243 8243 case X86_XCPT_AC: 8244 AssertMsg(VMX_EXIT_INTERRUPTION_INFO_ERROR_CODE_IS_VALID(u32IntInfo), 8245 ("Error-code-valid bit not set for exception that has an error code uVector=%#x\n", uVector)); 8244 /* No error codes for exceptions in real-mode. See Intel spec. 20.1.4 "Interrupt and Exception Handling" */ 8245 if (!CPUMIsGuestInRealModeEx(pMixedCtx)) 8246 AssertMsg(VMX_EXIT_INTERRUPTION_INFO_ERROR_CODE_IS_VALID(u32IntInfo), 8247 ("Error-code-valid bit not set for exception that has an error code uVector=%#x\n", uVector)); 8246 8248 /* fall thru */ 8247 8249 default:
Note:
See TracChangeset
for help on using the changeset viewer.