diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2011-06-10 21:48:04 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2011-06-10 21:48:04 +0000 |
commit | 44b13c5a41d3b0fc2f122071e8c64987564dbf21 (patch) | |
tree | e151362865543474a1b08449bee91967fd38f77b /gdb/symfile.h | |
parent | 6c30d220f19d7f4fe197fa5f62a472b2e5e84d7c (diff) | |
download | gdb-44b13c5a41d3b0fc2f122071e8c64987564dbf21.zip gdb-44b13c5a41d3b0fc2f122071e8c64987564dbf21.tar.gz gdb-44b13c5a41d3b0fc2f122071e8c64987564dbf21.tar.bz2 |
gdb/
Code cleanup.
* dwarf2read.c (dw2_map_symbol_filenames): Use symbol_filename_ftype
for fun.
* psymtab.c (map_symbol_filenames_psymtab)
(map_partial_symbol_filenames): Likewise.
* psymtab.h: Include symfile.h.
(map_partial_symbol_filenames): Use symbol_filename_ftype for fun.
* symfile.h (symbol_filename_ftype): New.
(struct quick_symbol_functions): Use symbol_filename_ftype for fun of
map_symbol_filenames, clarify more the naming in comment.
Diffstat (limited to 'gdb/symfile.h')
-rw-r--r-- | gdb/symfile.h | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/gdb/symfile.h b/gdb/symfile.h index 9c0bb75..cc65a14 100644 --- a/gdb/symfile.h +++ b/gdb/symfile.h @@ -116,6 +116,11 @@ struct symfile_segment_data int *segment_info; }; +/* Callback for quick_symbol_functions->map_symbol_filenames. */ + +typedef void (symbol_filename_ftype) (const char *filename, + const char *fullname, void *data); + /* The "quick" symbol functions exist so that symbol readers can avoiding an initial read of all the symbols. For example, symbol readers might choose to use the "partial symbol table" utilities, @@ -283,12 +288,10 @@ struct quick_symbol_functions int warn_if_readin); /* Call a callback for every file defined in OBJFILE whose symtab is - not already read in. FUN is the callback. It is passed the file's name, - the file's full name, and the DATA passed to this function. */ + not already read in. FUN is the callback. It is passed the file's + FILENAME, the file's FULLNAME, and the DATA passed to this function. */ void (*map_symbol_filenames) (struct objfile *objfile, - void (*fun) (const char *, const char *, - void *), - void *data); + symbol_filename_ftype *fun, void *data); }; /* Structure to keep track of symbol reading functions for various |