Changeset 60566 in vbox for trunk/src/VBox/VMM/VMMR0/HMSVMR0.cpp
- Timestamp:
- Apr 19, 2016 9:50:00 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMSVMR0.cpp
r59892 r60566 2271 2271 /* If we're emulating an instruction, we shouldn't have any TRPM traps pending 2272 2272 and if we're injecting an event we should have a TRPM trap pending. */ 2273 Assert (rcExit != VINF_EM_RAW_INJECT_TRPM_EVENT || TRPMHasTrap(pVCpu));2274 Assert (rcExit != VINF_EM_RAW_EMULATE_INSTR || !TRPMHasTrap(pVCpu));2273 AssertMsg(rcExit != VINF_EM_RAW_INJECT_TRPM_EVENT || TRPMHasTrap(pVCpu), ("rcExit=%Rrc\n", rcExit)); 2274 AssertMsg(rcExit != VINF_EM_RAW_EMULATE_INSTR || !TRPMHasTrap(pVCpu), ("rcExit=%Rrc\n", rcExit)); 2275 2275 2276 2276 /* Sync. the necessary state for going back to ring-3. */
Note:
See TracChangeset
for help on using the changeset viewer.