Changeset 69414 in vbox for trunk/src/VBox/VMM/VMMR0
- Timestamp:
- Oct 27, 2017 9:42:59 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMSVMR0.cpp
r69413 r69414 2671 2671 2672 2672 /** 2673 * Sets an exception as pending-for-injection into the VM.2674 *2675 * @param pVCpu The cross context virtual CPU structure.2676 */2677 DECLINLINE(void) hmR0SvmSetPendingXcpt(PVMCPU pVCpu, uint8_t uXcpt)2678 {2679 SVMEVENT Event;2680 Event.u = 0;2681 Event.n.u1Valid = 1;2682 Event.n.u3Type = SVM_EVENT_EXCEPTION;2683 Event.n.u8Vector = uXcpt;2684 hmR0SvmSetPendingEvent(pVCpu, &Event, 0 /* GCPtrFaultAddress */);2685 }2686 2687 2688 /**2689 2673 * Sets an invalid-opcode (\#UD) exception as pending-for-injection into the VM. 2690 2674 * … … 7443 7427 } 7444 7428 7445 hmR0SvmSetPendingXcpt (pVCpu, X86_XCPT_DB);7429 hmR0SvmSetPendingXcptDB(pVCpu); 7446 7430 return VINF_SUCCESS; 7447 7431 }
Note:
See TracChangeset
for help on using the changeset viewer.