diff src/cli/ddbg_help.txt @ 5:496dfd8f7342 default tip

added: -repeat option for "in", "ov" -run until a line option -run until a function option -break on a function start -n is an alias for ov
author marton@basel.hu
date Sun, 17 Apr 2011 11:05:31 +0200
parents 4a9dcbd9e54f
children
line wrap: on
line diff
--- a/src/cli/ddbg_help.txt	Sun Apr 10 12:15:04 2011 +0200
+++ b/src/cli/ddbg_help.txt	Sun Apr 17 11:05:31 2011 +0200
@@ -1,14 +1,23 @@
                 Running
 -----------------------------------------------------------------------------
-in                                 step into at source level
-ov                                 step over at source level
+in [repeat]                        step into at source level
+                                   optionally step into repeat times
+ov/n [repeat]                      step over at source level
+                                   optionally step over repeat times
 out                                step out at source level
 r                                  run/continue the program
+r <file>:<line>[#<thrd>]           run until location
+                                   optionally only for the given thread id
+rf funcname[#<thrd>]               run until the given function
+                                   optionally only for the given thread id
                 Breakpoints
 -----------------------------------------------------------------------------
 bp [<file>:<line>[#<thrd>]] [ind]  set breakpoint #index at given file:line
                                    optionally only for the given thread id
                                    optionally with the given breakpoint index
+bpf funcname[#<thrd>] [ind]        set breakpoint for given (substring)function name
+                                   optionally only for the given thread id
+                                   optionally with the given breakpoint index
 dbp [<file>:<line>|#index|*]       delete breakpoint by index, line or all
 lbp                                list breakpoints
 ltbp                               list temporary breakpoints