diff options
author | Doug Evans <xdje42@gmail.com> | 2016-12-19 08:33:46 -0800 |
---|---|---|
committer | Doug Evans <xdje42@gmail.com> | 2016-12-22 15:37:22 -0800 |
commit | 34c41c681f4a0a0dfe0405c7d2aecf458520557a (patch) | |
tree | 7bcac83e1692f2a41ee53483350ffc59eaafd907 /gdb/ChangeLog | |
parent | 112e8700a6fd2fed65ca70132c9cbed4132e8bd4 (diff) | |
download | binutils-gdb-34c41c681f4a0a0dfe0405c7d2aecf458520557a.tar.gz |
New syntax for mt print symbols,msymbols,psymbols.
gdb/ChangeLog:
* NEWS: Document new syntax for "mt print symbols", "mt print psymbols"
and "mt print msymbols" commands.
* psymtab.c (DEV_TTY): Delete.
(dump_psymtab_addrmap): Don't dump if psymtabs_addrmap is NULL.
(maintenance_print_psymbols): Rewrite for new syntax:
mt print psymbols [-objfile objfile] [-pc address] [outfile]
mt print psymbols [-objfile objfile] [-source source] [outfile]
(_initialize_psymtab): Update help text.
* symmisc.c (maintenance_print_symbols): Rewrite for new syntax:
mt print symbols [-pc address] [outfile]
mt print symbols [-objfile objfile] [-source source] [outfile]
(maintenance_print_msymbols): Rewrite for new syntax:
mt print msymbols [-objfile objfile] [outfile]
Only print symbols for the current progspace.
(_initialize_symmisc): Update help text.
gdb/doc/ChangeLog:
* gdb.texinfo (Symbols): Update docs for symbol printing maintenance
commands.
gdb/testsuite/ChangeLog:
* gdb.base/maint.exp: Update tests for maint print symbols, psymbols
and msymbols.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 9f33d6820fb..a9295e23fa3 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,21 @@ +2016-12-22 Doug Evans <xdje42@gmail.com> + + * NEWS: Document new syntax for "mt print symbols", "mt print psymbols" + and "mt print msymbols" commands. + * psymtab.c (DEV_TTY): Delete. + (dump_psymtab_addrmap): Don't dump if psymtabs_addrmap is NULL. + (maintenance_print_psymbols): Rewrite for new syntax: + mt print psymbols [-objfile objfile] [-pc address] [outfile] + mt print psymbols [-objfile objfile] [-source source] [outfile] + (_initialize_psymtab): Update help text. + * symmisc.c (maintenance_print_symbols): Rewrite for new syntax: + mt print symbols [-pc address] [outfile] + mt print symbols [-objfile objfile] [-source source] [outfile] + (maintenance_print_msymbols): Rewrite for new syntax: + mt print msymbols [-objfile objfile] [outfile] + Only print symbols for the current progspace. + (_initialize_symmisc): Update help text. + 2016-12-22 Simon Marchi <simon.marchi@ericsson.com> * ui-out.h (ui_out_begin, ui_out_end, ui_out_table_header, |