Changeset 93397 in vbox for trunk/src/VBox
- Timestamp:
- Jan 21, 2022 1:21:21 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/NEMR3Native-darwin.cpp
r93218 r93397 2694 2694 #endif 2695 2695 2696 AssertReturn(NEMR3CanExecuteGuest(pVM, pVCpu), VERR_NEM_IPE_9); 2697 2696 2698 /* 2697 2699 * Try switch to NEM runloop state. … … 2739 2741 if (rcStrict == VINF_EM_RAW_TO_R3) 2740 2742 rcStrict = VINF_SUCCESS; 2743 break; 2744 } 2745 2746 /* 2747 * Do not execute in HV if the A20 isn't enabled. 2748 */ 2749 if (PGMPhysIsA20Enabled(pVCpu)) 2750 { /* likely */ } 2751 else 2752 { 2753 rcStrict = VINF_EM_RESCHEDULE_REM; 2754 LogFlow(("NEM/%u: breaking: A20 disabled\n", pVCpu->idCpu)); 2741 2755 break; 2742 2756 }
Note:
See TracChangeset
for help on using the changeset viewer.