Changeset 48302 in vbox for trunk/src/VBox/VMM/VMMR0
- Timestamp:
- Sep 5, 2013 12:11:58 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMSVMR0.cpp
r48262 r48302 3031 3031 HMSVM_ASSERT_CPU_SAFE(); 3032 3032 3033 /* Preparatory work for running guest code, this may return to ring-3 for some last minute updates. */ 3033 /* Preparatory work for running guest code, this may force us to return 3034 to ring-3. This bugger disables interrupts on VINF_SUCCESS! */ 3034 3035 STAM_PROFILE_ADV_START(&pVCpu->hm.s.StatEntry, x); 3035 3036 rc = hmR0SvmPreRunGuest(pVM, pVCpu, pCtx, &SvmTransient); … … 3040 3041 rc = hmR0SvmRunGuest(pVM, pVCpu, pCtx); 3041 3042 3042 /* Restore any residual host-state and save any bits shared between host and guest into the guest-CPU state. */ 3043 /* Restore any residual host-state and save any bits shared between host 3044 and guest into the guest-CPU state. Re-enables interrupts! */ 3043 3045 hmR0SvmPostRunGuest(pVM, pVCpu, pCtx, &SvmTransient, rc); 3044 3046
Note:
See TracChangeset
for help on using the changeset viewer.