Changeset 46079 in vbox
- Timestamp:
- May 14, 2013 7:03:33 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMVMXR0.cpp
r46076 r46079 7713 7713 VMX_VALIDATE_EXIT_HANDLER_PARAMS(); 7714 7714 /* EMInterpretRdmsr() requires CR0, Eflags and SS segment register. */ 7715 int rc = hmR0VmxSaveGuestCR0(pVCpu, pMixedCtx); 7716 AssertRCReturn(rc, rc); 7717 rc = hmR0VmxSaveGuestRflags(pVCpu, pMixedCtx); 7718 AssertRCReturn(rc, rc); 7719 rc = hmR0VmxSaveGuestSegmentRegs(pVCpu, pMixedCtx); 7715 int rc = hmR0VmxSaveGuestCR0(pVCpu, pMixedCtx); 7716 rc |= hmR0VmxSaveGuestRflags(pVCpu, pMixedCtx); 7717 rc |= hmR0VmxSaveGuestSegmentRegs(pVCpu, pMixedCtx); 7720 7718 AssertRCReturn(rc, rc); 7721 7719
Note:
See TracChangeset
for help on using the changeset viewer.