diff options
author | Jim Blandy <jimb@codesourcery.com> | 2003-04-14 18:42:28 +0000 |
---|---|---|
committer | Jim Blandy <jimb@codesourcery.com> | 2003-04-14 18:42:28 +0000 |
commit | 44ea7b70f90e6f139269b8210568fd08f3dd4fbe (patch) | |
tree | b619e7a0d1486a58edc19a067a2db5199d131ef3 /gdb/gdbcmd.h | |
parent | daf7c4ad3aecfa9c617bfae6950bb0b5782e6edd (diff) | |
download | gdb-44ea7b70f90e6f139269b8210568fd08f3dd4fbe.zip gdb-44ea7b70f90e6f139269b8210568fd08f3dd4fbe.tar.gz gdb-44ea7b70f90e6f139269b8210568fd08f3dd4fbe.tar.bz2 |
gdb/ChangeLog:
2003-04-10 Jim Blandy <jimb@redhat.com>
* symmisc.c: #include "gdb_regex.h".
(maintenance_list_symtabs, maintenance_list_psymtabs): New
functions.
* maint.c (maintenance_list_command): New function.
(_initialize_maint_cmds): Register the above as commands.
* symtab.h (maintenance_list_symtabs,
maintenance_list_psymtabs): New declarations.
* cli/cli-cmds.c (maintenancelistlist): New variable.
(init_cmd_lists): Initialize it.
* cli/cli-cmds.h (maintenancelistlist): New declaration.
* gdbcmd.h (maintenancelistlist): New declaration.
* Makefile.in (symmisc.o): Update dependencies.
gdb/doc/ChangeLog:
2003-04-09 Jim Blandy <jimb@redhat.com>
* gdb.texinfo (Symbols): Document 'maint list symtabs' and 'maint
list psymtabs'.
Diffstat (limited to 'gdb/gdbcmd.h')
-rw-r--r-- | gdb/gdbcmd.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gdb/gdbcmd.h b/gdb/gdbcmd.h index 8c4490e..e626eb5 100644 --- a/gdb/gdbcmd.h +++ b/gdb/gdbcmd.h @@ -98,6 +98,10 @@ extern struct cmd_list_element *maintenanceinfolist; extern struct cmd_list_element *maintenanceprintlist; +/* Chain containing all defined "maintenance list" subcommands. */ + +extern struct cmd_list_element *maintenancelistlist; + extern struct cmd_list_element *setprintlist; extern struct cmd_list_element *showprintlist; |