Added 'watch' command to the winedbg help command.

This commit is contained in:
Lionel Ulmer 2002-08-26 21:48:05 +00:00 committed by Alexandre Julliard
parent f59bebe514
commit af246b59b4

View File

@ -206,23 +206,23 @@ void DEBUG_Help(void)
"subset of the commands that gdb accepts.", "subset of the commands that gdb accepts.",
"The commands currently are:", "The commands currently are:",
" help quit", " help quit",
" break [*<addr>] delete break bpnum", " break [*<addr>] watch *<addr>",
" disable bpnum enable bpnum", " delete break bpnum disable bpnum",
" condition <bpnum> [<expr>] pass", " enable bpnum condition <bpnum> [<expr>]",
" bt cont [N]", " finish cont [N]",
" step [N] next [N]", " step [N] next [N]",
" stepi [N] nexti [N]", " stepi [N] nexti [N]",
" x <addr> print <expr>", " x <addr> print <expr>",
" set <reg> = <expr> set *<addr> = <expr>", " display <expr> undisplay <disnum>",
" delete display <disnum> pass",
" bt frame <n>",
" up down", " up down",
" list <lines> disassemble [<addr>][,<addr>]", " list <lines> disassemble [<addr>][,<addr>]",
" frame <n> finish",
" show dir dir <path>", " show dir dir <path>",
" display <expr> undisplay <disnum>", " set <reg> = <expr> set *<addr> = <expr>",
" delete display <disnum> debugmsg <class>[-+]<type>\n",
" mode [16,32,vm86] walk [wnd,class,queue,module,", " mode [16,32,vm86] walk [wnd,class,queue,module,",
" whatis process,modref <pid>]", " whatis process,modref <pid>]",
" info (see 'help info' for options)\n", " info (see 'help info' for options) debugmsg <class>[-+]<type>\n",
"The 'x' command accepts repeat counts and formats (including 'i') in the", "The 'x' command accepts repeat counts and formats (including 'i') in the",
"same way that gdb does.\n", "same way that gdb does.\n",