diff options
author | Yao Qi <yao@codesourcery.com> | 2012-08-09 06:48:22 +0000 |
---|---|---|
committer | Yao Qi <yao@codesourcery.com> | 2012-08-09 06:48:22 +0000 |
commit | 8bfd80dbad1e2a61b52a06c91510c287c2c7a7af (patch) | |
tree | 44eabbf552138781ac780409e0c333011fbbc22b /gdb/gdbcmd.h | |
parent | 28578e6b11759a8ed9a71f56329fe2b736d5d443 (diff) | |
download | gdb-8bfd80dbad1e2a61b52a06c91510c287c2c7a7af.zip gdb-8bfd80dbad1e2a61b52a06c91510c287c2c7a7af.tar.gz gdb-8bfd80dbad1e2a61b52a06c91510c287c2c7a7af.tar.bz2 |
gdb/
* cli/cli-cmds.c (enablebreaklist): Move it to breakpoint.c.
(skiplist): Move it to skip.c.
(init_cmd_lists): Remove code setting enablebreaklist and
skiplist to NULL.
* breakpoint.c (enablebreaklist): Moved from cli/cli-cmds.c.
* cli/cli-cmds.h: Remove declaration of enablebreaklist and
skiplist.
* gdbcmd.h: Likewise.
* skip.c (_initialize_step_skip): Move 'skiplist' from
cli/cli-cmds.c.
Diffstat (limited to 'gdb/gdbcmd.h')
-rw-r--r-- | gdb/gdbcmd.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/gdb/gdbcmd.h b/gdb/gdbcmd.h index b21adc7..c7e3a27 100644 --- a/gdb/gdbcmd.h +++ b/gdb/gdbcmd.h @@ -64,10 +64,6 @@ extern struct cmd_list_element *togglelist; extern struct cmd_list_element *stoplist; -/* Chain containing all defined "enable breakpoint" subcommands. */ - -extern struct cmd_list_element *enablebreaklist; - /* Chain containing all defined set subcommands. */ extern struct cmd_list_element *setlist; @@ -124,8 +120,6 @@ extern struct cmd_list_element *setchecklist; extern struct cmd_list_element *showchecklist; -extern struct cmd_list_element *skiplist; - /* Chain containing all defined "save" subcommands. */ extern struct cmd_list_element *save_cmdlist; |