Changeset 72470 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Jun 7, 2018 11:41:23 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/NEMR3.cpp
r72343 r72470 32 32 #define LOG_GROUP LOG_GROUP_NEM 33 33 #include <VBox/vmm/nem.h> 34 #include <VBox/vmm/gim.h> 34 35 #include "NEMInternal.h" 35 36 #include <VBox/vmm/vm.h> … … 209 210 VMMR3_INT_DECL(int) NEMR3InitCompleted(PVM pVM, VMINITCOMPLETED enmWhat) 210 211 { 212 /* 213 * Check if GIM needs #UD, since that applies to everyone. 214 */ 215 if (enmWhat == VMINITCOMPLETED_RING3) 216 for (VMCPUID iCpu = 0; iCpu < pVM->cCpus; iCpu++) 217 pVM->aCpus[iCpu].nem.s.fGIMTrapXcptUD = GIMShouldTrapXcptUD(&pVM->aCpus[iCpu]); 218 219 /* 220 * Call native code. 221 */ 211 222 int rc = VINF_SUCCESS; 212 223 #ifdef VBOX_WITH_NATIVE_NEM
Note:
See TracChangeset
for help on using the changeset viewer.