Changeset 66155 in vbox
- Timestamp:
- Mar 17, 2017 2:38:19 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/VMEmt.cpp
r66097 r66155 97 97 { 98 98 /* 99 * During early init there is no pVM , so make a special path99 * During early init there is no pVM and/or pVCpu, so make a special path 100 100 * for that to keep things clearly separate. 101 101 */ 102 if (!pUVM->pVM) 102 PVM pVM = pUVM->pVM; 103 PVMCPU pVCpu = pUVCpu->pVCpu; 104 if (!pVCpu || !pVM) 103 105 { 104 106 /* … … 154 156 * servicing requests. (Look after the ifs.) 155 157 */ 156 PVM pVM = pUVM->pVM;157 PVMCPU pVCpu = pUVCpu->pVCpu;158 158 enmBefore = pVM->enmVMState; 159 159 if (pUVM->vm.s.fTerminateEMT)
Note:
See TracChangeset
for help on using the changeset viewer.