aboutsummaryrefslogtreecommitdiff
path: root/gdb/cli/cli-cmds.c
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@linux-m68k.org>2006-10-27 22:23:21 +0000
committerAndreas Schwab <schwab@linux-m68k.org>2006-10-27 22:23:21 +0000
commitf73adfeb8bae36885e6ea248d12223ab0d5eb9cb (patch)
tree6c7e46077a639c83fbfef0d0dff8f1ecebaca3e7 /gdb/cli/cli-cmds.c
parent86157c207017c3d7df49efad2328697b278f50c2 (diff)
downloadgdb-f73adfeb8bae36885e6ea248d12223ab0d5eb9cb.zip
gdb-f73adfeb8bae36885e6ea248d12223ab0d5eb9cb.tar.gz
gdb-f73adfeb8bae36885e6ea248d12223ab0d5eb9cb.tar.bz2
* gdbcmd.h (detachlist): Declare.
* infcmd.c (_initialize_infcmd): Define "detach" as prefix command. * linux-fork.c (_initialize_linux_fork): Rename "detach-checkpoint" to "detach checkpoint" and "detach-fork" to "detach fork". * cli/cli-cmds.c (detachlist): Define. (init_cmd_lists): Initialize it. * cli/cli-cmds.h (detachlist): Declare. doc/: * gdb.texinfo (Processes): Rename "detach-fork" to "detach fork". testsuite/: * gdb.base/multi-forks.exp: Use "detach fork" instead of "detach-fork".
Diffstat (limited to 'gdb/cli/cli-cmds.c')
-rw-r--r--gdb/cli/cli-cmds.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/gdb/cli/cli-cmds.c b/gdb/cli/cli-cmds.c
index fdff394..5359ed4 100644
--- a/gdb/cli/cli-cmds.c
+++ b/gdb/cli/cli-cmds.c
@@ -122,6 +122,10 @@ struct cmd_list_element *stoplist;
struct cmd_list_element *deletelist;
+/* Chain containing all defined detach subcommands. */
+
+struct cmd_list_element *detachlist;
+
/* Chain containing all defined "enable breakpoint" subcommands. */
struct cmd_list_element *enablebreaklist;
@@ -1089,6 +1093,7 @@ init_cmd_lists (void)
togglelist = NULL;
stoplist = NULL;
deletelist = NULL;
+ detachlist = NULL;
enablebreaklist = NULL;
setlist = NULL;
unsetlist = NULL;