Changeset 73131 in vbox
- Timestamp:
- Jul 13, 2018 5:10:33 PM (6 years ago)
- Location:
- trunk/src/VBox/Debugger
- Files:
-
- 1 added
- 2 edited
-
DBGCCommands.cpp (modified) (3 diffs)
-
DBGCDumpImage.cpp (added)
-
Makefile.kmk (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Debugger/DBGCCommands.cpp
r69500 r73131 53 53 static FNDBGCCMD dbgcCmdDetect; 54 54 static FNDBGCCMD dbgcCmdDmesg; 55 extern FNDBGCCMD dbgcCmdDumpImage; 55 56 static FNDBGCCMD dbgcCmdCpu; 56 57 static FNDBGCCMD dbgcCmdInfo; … … 117 118 118 119 120 /** 'dumpimage' arguments. */ 121 static const DBGCVARDESC g_aArgDumpImage[] = 122 { 123 /* cTimesMin, cTimesMax, enmCategory, fFlags, pszName, pszDescription */ 124 { 1, ~0U, DBGCVAR_CAT_POINTER, 0, "address", "Address of image to dump." }, 125 }; 126 127 119 128 /** 'help' arguments. */ 120 129 static const DBGCVARDESC g_aArgHelp[] = … … 241 250 { "detect", 0, 0, NULL, 0, 0, dbgcCmdDetect, "", "Detects or re-detects the guest os and starts the OS specific digger." }, 242 251 { "dmesg", 0, 1, &g_aArgDmesg[0], RT_ELEMENTS(g_aArgDmesg), 0, dbgcCmdDmesg, "[N last messages]", "Displays the guest os kernel messages, if available." }, 252 { "dumpimage", 1, ~0U, &g_aArgDumpImage[0], RT_ELEMENTS(g_aArgDumpImage), 0, dbgcCmdDumpImage, "<addr1> [addr2..[addrN]]", "Dumps executable images." }, 243 253 { "harakiri", 0, 0, NULL, 0, 0, dbgcCmdHarakiri, "", "Kills debugger process." }, 244 254 { "help", 0, ~0U, &g_aArgHelp[0], RT_ELEMENTS(g_aArgHelp), 0, dbgcCmdHelp, "[cmd/op [..]]", "Display help. For help about info items try 'info help'." }, -
trunk/src/VBox/Debugger/Makefile.kmk
r69111 r73131 45 45 DBGCCmdWorkers.cpp \ 46 46 DBGCCommands.cpp \ 47 DBGCDumpImage.cpp \ 47 48 DBGCFunctions.cpp \ 48 49 DBGCEmulateCodeView.cpp \
Note:
See TracChangeset
for help on using the changeset viewer.

