Changeset 15827 in vbox
- Timestamp:
- Jan 7, 2009 10:22:15 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 41413
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/MachineDebuggerImpl.cpp
r15762 r15827 340 340 341 341 /** 342 * Set the new patch manager enabled flag.343 *344 * @returns COM status code345 * @param new patch manager enabled flag346 */347 STDMETHODIMP MachineDebugger::InjectNMI()348 {349 LogFlowThisFunc ((""));350 351 AutoCaller autoCaller (this);352 CheckComRCReturnRC (autoCaller.rc());353 354 AutoWriteLock alock (this);355 356 Console::SafeVMPtr pVM (mParent);357 CheckComRCReturnRC (pVM.rc());358 359 HWACCMR3InjectNMI(pVM);360 361 return S_OK;362 }363 364 /**365 342 * Returns the current code scanner enabled flag. 366 343 * … … 694 671 Console::SafeVMPtrQuiet pVM (mParent); 695 672 696 if (pVM.isOk()) 697 STAMR3Reset (pVM, Utf8Str (aPattern).raw()); 673 if (!pVM.isOk()) 674 return E_FAIL; 675 676 STAMR3Reset (pVM, Utf8Str (aPattern).raw()); 698 677 699 678 return S_OK; … … 710 689 Console::SafeVMPtrQuiet pVM (mParent); 711 690 712 if (pVM.isOk()) 713 STAMR3Dump (pVM, Utf8Str (aPattern).raw()); 691 if (!pVM.isOk()) 692 return E_FAIL; 693 694 STAMR3Dump (pVM, Utf8Str (aPattern).raw()); 714 695 715 696 return S_OK; … … 742 723 * of the amount statistics in a debug build. */ 743 724 Bstr (pszSnapshot).cloneTo (aStats); 725 726 return S_OK; 727 } 728 729 /** 730 * Set the new patch manager enabled flag. 731 * 732 * @returns COM status code 733 * @param new patch manager enabled flag 734 */ 735 STDMETHODIMP MachineDebugger::InjectNMI() 736 { 737 LogFlowThisFunc (("")); 738 739 AutoCaller autoCaller (this); 740 CheckComRCReturnRC (autoCaller.rc()); 741 742 AutoWriteLock alock (this); 743 744 Console::SafeVMPtr pVM (mParent); 745 CheckComRCReturnRC (pVM.rc()); 746 747 HWACCMR3InjectNMI(pVM); 744 748 745 749 return S_OK;
Note:
See TracChangeset
for help on using the changeset viewer.