Changeset 14107 in vbox
- Timestamp:
- Nov 11, 2008 7:24:25 PM (16 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/MachineDebuggerImpl.cpp
r13837 r14107 380 380 381 381 PATMR3AllowPatching(pVM, enable); 382 return E_NOTIMPL; 382 return S_OK; 383 } 384 385 /** 386 * Set the new patch manager enabled flag. 387 * 388 * @returns COM status code 389 * @param new patch manager enabled flag 390 */ 391 STDMETHODIMP MachineDebugger::InjectNMI() 392 { 393 AutoWriteLock alock (this); 394 CHECK_READY(); 395 LogFlowThisFunc (("")); 396 397 Console::SafeVMPtr pVM (mParent); 398 CheckComRCReturnRC (pVM.rc()); 399 400 HWACCMR3InjectNMI(pVM); 401 return S_OK; 383 402 } 384 403 -
trunk/src/VBox/Main/idl/VirtualBox.xidl
r14084 r14107 8662 8662 <interface 8663 8663 name="IMachineDebugger" extends="$unknown" 8664 uuid=" 0de52346-938b-4020-a33b-471be542f3ff"8664 uuid="b0b2a2dd-0627-4502-91c2-ddc5e77609e0" 8665 8665 wsmap="suppress" 8666 8666 > … … 8696 8696 <desc>The XML document containing the statistics.</desc> 8697 8697 </param> 8698 </method> 8699 8700 <method name="injectNMI"> 8701 <desc> 8702 Inject an NMI into a running VT-x/AMD-V VM. 8703 </desc> 8698 8704 </method> 8699 8705 -
trunk/src/VBox/Main/include/MachineDebuggerImpl.h
r13221 r14107 73 73 STDMETHOD(COMSETTER(VirtualTimeRate))(ULONG pct); 74 74 STDMETHOD(COMGETTER(VM))(ULONG64 *vm); 75 STDMETHOD(InjectNMI)(); 75 76 76 77 // IMachineDebugger methods
Note:
See TracChangeset
for help on using the changeset viewer.