diff options
author | Keith Seitz <keiths@cygnus> | 1998-06-27 00:45:20 +0000 |
---|---|---|
committer | Keith Seitz <keiths@cygnus> | 1998-06-27 00:45:20 +0000 |
commit | 7f6cb62ee6bb03d33729ca8a27e3946591efc1f1 (patch) | |
tree | 7cfd46a6df61a591ee4b5dbfe21f5084b3b78b29 /gdb/ChangeLog-gdbtk | |
parent | 6cddf7d9676cb0264628654e5a242ef7acf700ab (diff) | |
download | gdb-7f6cb62ee6bb03d33729ca8a27e3946591efc1f1.zip gdb-7f6cb62ee6bb03d33729ca8a27e3946591efc1f1.tar.gz gdb-7f6cb62ee6bb03d33729ca8a27e3946591efc1f1.tar.bz2 |
* symtab.h (enum namespace): Add new namespaces FUNCTIONS_NAMESPACE,
TYPES_NAMESPACE, METHODS_NAMESPACE, and VARIABLES_NAMESPACE used by
new search_symbols.
Add prototype for search_symbols and free_search_symbols.
* symtab.c (list_symbols): Rewrite to use new search_symbols.
(file_matches): New helper function for search_symbols.
(free_search_symbols): New function which frees data returned from
search_symbols.
(print_symbol_info): New helper function which prints info about a
matched symbol to stdout. Extracted from old list_symbols.
(print_msymbol_info): New helper function which prints info about
a matched msymbol to stdout. Extracted from old list_symbols.
(symtab_symbol_info): Extracted from old list_symbols.
(variables_info): Use symtab_symbol_info.
(functions_info): Use symtab_symbol_info.
(types_info): Use symtab_symbol_info.
(rbreak_command): Rewrite to use new search_symbols.
* gdbtk.c: Change all references to static global "interp" to
"gdbtk_interp" and export this global.
(gdbtk_init): If gdbtk_source_filename is not NULL, source this file
into the interpreter when it goes idle.
Add new command "gdb_search".
(gdb_search): New function which searches the symbol table.
(gdbtk_test): New function called by main when the --tclcommand
option is used.
* main.c (main): Add a new option "--tclcommand" which is used
by the testsuite to source a file into the interpreter when it
goes idle.
Diffstat (limited to 'gdb/ChangeLog-gdbtk')
-rw-r--r-- | gdb/ChangeLog-gdbtk | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/gdb/ChangeLog-gdbtk b/gdb/ChangeLog-gdbtk index 2c11440..7264fac 100644 --- a/gdb/ChangeLog-gdbtk +++ b/gdb/ChangeLog-gdbtk @@ -1,3 +1,18 @@ +Fri Jun 26 13:56:07 1998 Keith Seitz <keiths@cygnus.com> + + * gdbtk.c: Change all references to static global "interp" to + "gdbtk_interp" and export this global. + (gdbtk_init): If gdbtk_source_filename is not NULL, source this file + into the interpreter when it goes idle. + Add new command "gdb_search". + (gdb_search): New function which searches the symbol table. + (gdbtk_test): New function called by main when the --tclcommand + option is used. + + * main.c (main): Add a new option "--tclcommand" which is used + by the testsuite to source a file into the interpreter when it + goes idle. + Wed Jun 17 19:12:23 1998 Jeff Holcomb <jeffh@cygnus.com> * Makefile.in (install-only): Install tracing help files. |