Changeset 71418 in vbox for trunk/src/VBox/VMM/VMMR0
- Timestamp:
- Mar 21, 2018 10:01:14 AM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 121385
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMSVMR0.cpp
r71415 r71418 3125 3125 3126 3126 hmR0SvmSetPendingEvent(pVCpu, &Event, uFaultAddress); 3127 }3128 3129 3130 /**3131 * Sets a device-not-available (\#NM) exception as pending-for-injection into3132 * the VM.3133 *3134 * @param pVCpu The cross context virtual CPU structure.3135 */3136 DECLINLINE(void) hmR0SvmSetPendingXcptNM(PVMCPU pVCpu)3137 {3138 SVMEVENT Event;3139 Event.u = 0;3140 Event.n.u1Valid = 1;3141 Event.n.u3Type = SVM_EVENT_EXCEPTION;3142 Event.n.u8Vector = X86_XCPT_NM;3143 hmR0SvmSetPendingEvent(pVCpu, &Event, 0 /* GCPtrFaultAddress */);3144 3127 } 3145 3128
Note:
See TracChangeset
for help on using the changeset viewer.