Changeset 104511 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- May 3, 2024 3:03:42 PM (9 months ago)
- Location:
- trunk/src/VBox/VMM/VMMR3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/GCM.cpp
r104508 r104511 154 154 155 155 #if 0 /* development override */ 156 pVM->gcm.s. enmFixerIds= GCMFIXER_DBZ_OS2 | GCMFIXER_DBZ_DOS | GCMFIXER_DBZ_WIN9X;156 pVM->gcm.s.fFixerSet = GCMFIXER_DBZ_OS2 | GCMFIXER_DBZ_DOS | GCMFIXER_DBZ_WIN9X; 157 157 #endif 158 158 -
trunk/src/VBox/VMM/VMMR3/HM.cpp
r103270 r104511 754 754 PVMCPU pVCpu = pVM->apCpusR3[idCpu]; 755 755 pVCpu->hm.s.fActive = false; 756 pVCpu->hm.s.fGIMTrapXcptUD = GIMShouldTrapXcptUD(pVCpu); /* Is safe to call now since GIMR3Init() has completed. */757 pVCpu->hm.s.fGCMTrapXcptDE = GCM ShouldTrapXcptDE(pVCpu);/* Is safe to call now since GCMR3Init() has completed. */756 pVCpu->hm.s.fGIMTrapXcptUD = GIMShouldTrapXcptUD(pVCpu); /* Is safe to call now since GIMR3Init() has completed. */ 757 pVCpu->hm.s.fGCMTrapXcptDE = GCMIsInterceptingXcptDE(pVCpu); /* Is safe to call now since GCMR3Init() has completed. */ 758 758 } 759 759
Note:
See TracChangeset
for help on using the changeset viewer.