Changeset 74934 in vbox for trunk/src/VBox
- Timestamp:
- Oct 19, 2018 3:21:04 AM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 125948
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAllCImplVmxInstr.cpp.h
r74902 r74934 6099 6099 /* Check premature interrupt-window exiting. */ 6100 6100 rc = iemVmxVmentryCheckIntWindowExit(pVCpu, pszInstr); 6101 if (rc == VINF_VMX_INTERCEPT_NOT_ACTIVE) 6102 { /* likely */ } 6103 else if (rc == VINF_VMX_VMEXIT) 6104 return VINF_SUCCESS; 6101 if (rc != VINF_VMX_INTERCEPT_NOT_ACTIVE) 6102 return rc; 6105 6103 6106 6104 /** @todo NSTVMX: Pending MTF exiting. */
Note:
See TracChangeset
for help on using the changeset viewer.