Changeset 34913 in vbox
- Timestamp:
- Dec 9, 2010 5:20:41 PM (14 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 1 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/Makefile.kmk
r34587 r34913 36 36 VBoxInternalManage.cpp \ 37 37 VBoxManageControlVM.cpp \ 38 VBoxManageDebugVM.cpp \ 38 39 VBoxManageDHCPServer.cpp \ 39 40 VBoxManageDisk.cpp \ -
trunk/src/VBox/Frontends/VBoxManage/VBoxManage.cpp
r34634 r34913 432 432 { "extpack", USAGE_EXTPACK, handleExtPack}, 433 433 { "bandwidthctl", USAGE_BANDWIDTHCONTROL, handleBandwidthControl}, 434 { "debugvm", USAGE_DEBUGVM, handleDebugVM}, 434 435 { NULL, 0, NULL } 435 436 }; -
trunk/src/VBox/Frontends/VBoxManage/VBoxManage.h
r34634 r34913 98 98 #define USAGE_EXTPACK RT_BIT_64(55) 99 99 #define USAGE_BANDWIDTHCONTROL RT_BIT_64(56) 100 #define USAGE_DEBUGVM RT_BIT_64(57) 100 101 #define USAGE_ALL (~(uint64_t)0) 101 102 /** @} */ … … 166 167 /* VBoxManageModifyVM.cpp */ 167 168 int handleModifyVM(HandlerArg *a); 169 170 /* VBoxManageDebugVM.cpp */ 171 int handleDebugVM(HandlerArg *a); 168 172 169 173 /* VBoxManageGuestProp.cpp */ -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageControlVM.cpp
r34604 r34913 1 1 /* $Id$ */ 2 2 /** @file 3 * VBoxManage - Implementation of controlvm command.3 * VBoxManage - Implementation of the controlvm command. 4 4 */ 5 5 … … 1015 1015 else 1016 1016 { 1017 errorSyntax(USAGE_CONTROLVM, "Invalid parameter '%s'", Utf8Str(a->argv[1]).c_str());1017 errorSyntax(USAGE_CONTROLVM, "Invalid parameter '%s'", a->argv[1]); 1018 1018 rc = E_FAIL; 1019 1019 } -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageHelp.cpp
r34888 r34913 22 22 #include <VBox/version.h> 23 23 24 #include <iprt/buildconfig.h> 24 25 #include <iprt/ctype.h> 25 26 #include <iprt/err.h> … … 676 677 "\n"); 677 678 } 679 if (u64Cmd & USAGE_DEBUGVM) 680 { 681 RTStrmPrintf(pStrm, 682 "VBoxManage debugvm <uuid>|<name>\n" 683 " injectnmi |\n" 684 " dumpguestcore --filename <name>\n" 685 "\n"); 686 } 678 687 } 679 688 … … 709 718 RTEXITCODE errorGetOpt(USAGECATEGORY fUsageCategory, int rc, union RTGETOPTUNION const *pValueUnion) 710 719 { 720 /* 721 * Check if it is an unhandled standard option. 722 */ 723 if (rc == 'V') 724 { 725 RTPrintf("%sr%d\n", VBOX_VERSION_STRING, RTBldCfgRevision()); 726 return RTEXITCODE_SUCCESS; 727 } 728 729 if (rc == 'h') 730 { 731 showLogo(g_pStdErr); 732 #ifndef VBOX_ONLY_DOCS 733 if (g_fInternalMode) 734 printUsageInternal(fUsageCategory, g_pStdOut); 735 else 736 printUsage(fUsageCategory, g_pStdOut); 737 #endif 738 return RTEXITCODE_SUCCESS; 739 } 740 741 /* 742 * General failure. 743 */ 711 744 showLogo(g_pStdErr); // show logo even if suppressed 712 745 #ifndef VBOX_ONLY_DOCS -
trunk/src/VBox/Main/MachineDebuggerImpl.cpp
r34902 r34913 727 727 728 728 AutoCaller autoCaller(this); 729 if (FAILED(autoCaller.rc())) return autoCaller.rc(); 730 731 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS); 732 733 Console::SafeVMPtr pVM(mParent); 734 if (FAILED(pVM.rc())) return pVM.rc(); 735 736 HWACCMR3InjectNMI(pVM); 737 738 return S_OK; 729 HRESULT hrc = autoCaller.rc(); 730 if (SUCCEEDED(hrc)) 731 { 732 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS); 733 Console::SafeVMPtr ptrVM(mParent); 734 hrc = ptrVM.rc(); 735 if (SUCCEEDED(hrc)) 736 { 737 int vrc = HWACCMR3InjectNMI(ptrVM); 738 if (RT_SUCCESS(vrc)) 739 hrc = S_OK; 740 else 741 hrc = setError(E_FAIL, tr("HWACCMR3InjectNMI failed with %Rrc"), vrc); 742 } 743 } 744 return hrc; 739 745 } 740 746
Note:
See TracChangeset
for help on using the changeset viewer.