diff options
author | Steve Chamberlain <sac@cygnus> | 1996-01-04 19:07:28 +0000 |
---|---|---|
committer | Steve Chamberlain <sac@cygnus> | 1996-01-04 19:07:28 +0000 |
commit | 1750a5ef21ab77772e1aa396d9483afb8177fc8c (patch) | |
tree | 10fda53453460db4a4b1707c079dc5b53d77552b /gdb/symtab.c | |
parent | 3389dfdcc06b997c3a783a31c3ded0113fee46f6 (diff) | |
download | gdb-1750a5ef21ab77772e1aa396d9483afb8177fc8c.zip gdb-1750a5ef21ab77772e1aa396d9483afb8177fc8c.tar.gz gdb-1750a5ef21ab77772e1aa396d9483afb8177fc8c.tar.bz2 |
* mdebugread.c (mylookup_symbol): enum namespace becomes
enum_namespace type.
* symfile.c (add_psymbol_to_list)
(add_psymbol_addr_to_list): Ditto.
* symtab.c (lookup_partial_symbol): Ditto.
(lookup_symbol): Ditto.
(lookup_block_symbol): Ditto.
* win32-nat.c (handle_load_dll): Use incoming dll base.
(child_wait): Catch DLL load errors.
(create_child_inferior): Translated between paths correctly.
Diffstat (limited to 'gdb/symtab.c')
-rw-r--r-- | gdb/symtab.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gdb/symtab.c b/gdb/symtab.c index 2b4037d..302f0cf 100644 --- a/gdb/symtab.c +++ b/gdb/symtab.c @@ -34,7 +34,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "language.h" #include "demangle.h" -#include <obstack.h> +#include "obstack.h" #include <sys/types.h> #include <fcntl.h> @@ -84,7 +84,7 @@ static int find_line_common PARAMS ((struct linetable *, int, int *)); static struct partial_symbol * lookup_partial_symbol PARAMS ((struct partial_symtab *, const char *, - int, enum namespace)); + int, namespace_enum)); static struct symtab * lookup_symtab_1 PARAMS ((char *)); @@ -476,7 +476,7 @@ struct symbol * lookup_symbol (name, block, namespace, is_a_field_of_this, symtab) const char *name; register const struct block *block; - const enum namespace namespace; + const namespace_enum namespace; int *is_a_field_of_this; struct symtab **symtab; { @@ -701,7 +701,7 @@ lookup_partial_symbol (pst, name, global, namespace) struct partial_symtab *pst; const char *name; int global; - enum namespace namespace; + namespace_enum namespace; { struct partial_symbol *start, *psym; struct partial_symbol *top, *bottom, *center; @@ -813,7 +813,7 @@ struct symbol * lookup_block_symbol (block, name, namespace) register const struct block *block; const char *name; - const enum namespace namespace; + const namespace_enum namespace; { register int bot, top, inc; register struct symbol *sym; |