File: break.h

package info (click to toggle)
remake 4.3%2Bdbg-1.6%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 9,688 kB
  • sloc: ansic: 38,702; sh: 5,248; perl: 1,577; makefile: 236; lisp: 26; sed: 16
file content (34 lines) | stat: -rw-r--r-- 1,466 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/** \file libdebugger/command/help/break.h
 *
 *  \brief Help text for debugger command `break`.
 *
 */
#define break_HELP_TEXT							\
  "Set a breakpoint at a target or line number; also show breakpoints.\n" \
  "\n"									\
  "With a target name or a line number, set a break before running commands\n" \
  "of that target or line number.  Without argument, list all breakpoints.\n" \
  "\n"									\
  "For a given target, there are 3 places where one may want to stop at;\n" \
  "that name can be given as a last option. The stopping points are:\n" \
  "\n"									\
  "- before target prerequisite checking: `prereq`\n"			\
  "- after target prerequisite checking but before running commands: `run`\n" \
  "- after target is complete: `end`\n"					\
  "\n"									\
  "Giving `all` will stop in all of the above places. The default behavior is `run`.\n" \
  "\n"									\
  "If no location specification is given, use the current target.\n"	\
  "\n"									\
  "Examples:\n"								\
  "---------\n"								\
  "\n"									\
  "   break               # list all breakpoints\n"			\
  "   break 10            # Break on line 10 of the Makefile we are\n"	\
  "                       # currently stopped at\n"			\
  "   break tests         # Break on the \"tests\" target\n"		\
  "   break tests prereq  # Break on the \"tests\" target before dependency checking is done\n" \
  "\n"									\
  "See also:\n"								\
  "---------\n"								\
  "`delete`"