aboutsummaryrefslogtreecommitdiff
path: root/gdb/symtab.h
diff options
context:
space:
mode:
authorDoug Evans <dje@google.com>2012-06-19 00:53:35 +0000
committerDoug Evans <dje@google.com>2012-06-19 00:53:35 +0000
commit422d65e705c7d6842497a01208ee5668b61cc0ca (patch)
treeae53d5ce443312742a6884ab4061fb23df0d5b67 /gdb/symtab.h
parent49f6c8397d2fc0daf0bad3b832388a36feceb6c6 (diff)
downloadgdb-422d65e705c7d6842497a01208ee5668b61cc0ca.zip
gdb-422d65e705c7d6842497a01208ee5668b61cc0ca.tar.gz
gdb-422d65e705c7d6842497a01208ee5668b61cc0ca.tar.bz2
* symtab.h (minimal_symbol): New member created_by_gdb.
* elfread.c (elf_symtab_read): Set created_by_gdb for @plt minsym created by gdb. * symtab.c (lookup_symbol_in_objfile_from_linkage_name): New function. (search_symbols): Call it instead of lookup_symbol. Skip symbols created by gdb. Only scan minsyms if nfiles == 0. testsuite: * gdb.base/info-fun.exp: New file. * gdb.base/info-fun.c: New file. * gdb.base/info-fun-solib.c: New file.
Diffstat (limited to 'gdb/symtab.h')
-rw-r--r--gdb/symtab.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/gdb/symtab.h b/gdb/symtab.h
index 38472e0..8ee187e 100644
--- a/gdb/symtab.h
+++ b/gdb/symtab.h
@@ -340,6 +340,10 @@ struct minimal_symbol
ENUM_BITFIELD(minimal_symbol_type) type : 8;
+ /* Non-zero if this symbol was created by gdb.
+ Such symbols do not appear in the output of "info var|fun". */
+ unsigned int created_by_gdb : 1;
+
/* Two flag bits provided for the use of the target. */
unsigned int target_flag_1 : 1;
unsigned int target_flag_2 : 1;