diff options
author | Doug Evans <dje@google.com> | 2013-09-25 21:44:11 +0000 |
---|---|---|
committer | Doug Evans <dje@google.com> | 2013-09-25 21:44:11 +0000 |
commit | ade7ed9e33d5f0bff646623bc8c905c0d782fcdc (patch) | |
tree | 3beb19b971feb5426c86e1b3d637c383d7796bd2 /gdb/symfile.h | |
parent | 4e8516b2d98ff0bf08862b7f8b628c6b40623181 (diff) | |
download | gdb-ade7ed9e33d5f0bff646623bc8c905c0d782fcdc.zip gdb-ade7ed9e33d5f0bff646623bc8c905c0d782fcdc.tar.gz gdb-ade7ed9e33d5f0bff646623bc8c905c0d782fcdc.tar.bz2 |
* symfile.h (struct quick_symbol_functions): Reorg arg list of
map_matching_symbols so objfile is first. All uses updated.
* dwarf2read.c (dw2_map_matching_symbols): Update signature.
* psymtab.c (map_matching_symbols_psymtab): Update signature.
Diffstat (limited to 'gdb/symfile.h')
-rw-r--r-- | gdb/symfile.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gdb/symfile.h b/gdb/symfile.h index ac5b711..b089411 100644 --- a/gdb/symfile.h +++ b/gdb/symfile.h @@ -237,8 +237,9 @@ struct quick_symbol_functions CALLBACK returns 0 to indicate that the scan should continue, or non-zero to indicate that the scan should be terminated. */ - void (*map_matching_symbols) (const char *name, domain_enum namespace, - struct objfile *, int global, + void (*map_matching_symbols) (struct objfile *, + const char *name, domain_enum namespace, + int global, int (*callback) (struct block *, struct symbol *, void *), void *data, |