diff options
author | Keith Seitz <keiths@redhat.com> | 2015-09-30 14:23:12 -0700 |
---|---|---|
committer | Keith Seitz <keiths@redhat.com> | 2015-10-01 11:48:39 -0700 |
commit | 23916b7dc0f2f05982da7a76726d931cf738d2cc (patch) | |
tree | b08bad1994250bf0a7d849fe099fd6f5c2d7da80 /gdb/symtab.h | |
parent | 398e081380a204e3b9fb4eb4da069ccf471f930e (diff) | |
download | gdb-users/keiths/intelligent-breakpoint_re_set.zip gdb-users/keiths/intelligent-breakpoint_re_set.tar.gz gdb-users/keiths/intelligent-breakpoint_re_set.tar.bz2 |
Initial publication of breakpoint reset project.users/keiths/intelligent-breakpoint_re_set
This is a work-in-progress publication of an intelligent breakpoint_re_set
redesign. See the project wiki page for more information:
https://sourceware.org/gdb/wiki/BreakpointReset
Diffstat (limited to 'gdb/symtab.h')
-rw-r--r-- | gdb/symtab.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gdb/symtab.h b/gdb/symtab.h index d3f6370..86fcf39 100644 --- a/gdb/symtab.h +++ b/gdb/symtab.h @@ -816,6 +816,9 @@ struct symbol struct symbol *hash_next; }; +typedef struct symbol *symbolp; +DEF_VEC_P (symbolp); + /* Several lookup functions return both a symbol and the block in which the symbol is found. This structure is used in these cases. */ @@ -1603,6 +1606,7 @@ int iterate_over_some_symtabs (const char *name, struct compunit_symtab *after_last); void iterate_over_symtabs (const char *name, + VEC (objfilep) *objfiles, int (*callback) (struct symtab *symtab, void *data), void *data); |