diff options
author | matt rice <ratmice@gmail.com> | 2011-07-21 15:13:30 +0000 |
---|---|---|
committer | matt rice <ratmice@gmail.com> | 2011-07-21 15:13:30 +0000 |
commit | 9b158ba08eb1ad14dc2324b8391263b228fa928a (patch) | |
tree | 29747b586e1e18155aaf1ce9de26781e9468e1ba /gdb/macrotab.h | |
parent | d17b6f81012b6844de08934193fe7cb7db8cbd5f (diff) | |
download | gdb-9b158ba08eb1ad14dc2324b8391263b228fa928a.zip gdb-9b158ba08eb1ad14dc2324b8391263b228fa928a.tar.gz gdb-9b158ba08eb1ad14dc2324b8391263b228fa928a.tar.bz2 |
PR macros/12999
* macrotab.h (macro_callback_fn): Add new arguments to callback.
* macrotab.c (foreach_macro): Ditto.
(foreach_macro_in_scope): Ditto.
* macrocmd.c (print_macro_callback): New function.
(info_macro_command): Move some code to print_macro_definition.
(print_macro_definition): New function.
(print_one_macro): Add new arguments to callback.
testsuite/
* gdb.base/info-macros.c: New test sources.
* gdb.base/info-macros.exp: New tests.
docs/
* gdb.texinfo (Macros): Add info definitions and info macros commands.
Update text and cindex entries for info macro command.
Diffstat (limited to 'gdb/macrotab.h')
-rw-r--r-- | gdb/macrotab.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gdb/macrotab.h b/gdb/macrotab.h index d2b2b63..a10351a 100644 --- a/gdb/macrotab.h +++ b/gdb/macrotab.h @@ -306,11 +306,14 @@ struct macro_source_file *(macro_definition_location int *definition_line)); /* Callback function when walking a macro table. NAME is the name of - the macro, and DEFINITION is the definition. USER_DATA is an - arbitrary pointer which is passed by the caller to macro_for_each - or macro_for_each_in_scope. */ + the macro, and DEFINITION is the definition. SOURCE is the file at the + start of the include path, and LINE is the line number of the SOURCE file + where the macro was defined. USER_DATA is an arbitrary pointer which is + passed by the caller to macro_for_each or macro_for_each_in_scope. */ typedef void (*macro_callback_fn) (const char *name, const struct macro_definition *definition, + struct macro_source_file *source, + int line, void *user_data); /* Call the function FN for each macro in the macro table TABLE. |