* 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.
This commit is contained in:
Steve Chamberlain 1996-01-04 19:07:28 +00:00
parent 3389dfdcc0
commit 1750a5ef21
5 changed files with 73 additions and 23 deletions

View file

@ -346,7 +346,7 @@ static struct type *
parse_type PARAMS ((int, union aux_ext *, unsigned int, int *, int, char *));
static struct symbol *
mylookup_symbol PARAMS ((char *, struct block *, enum namespace,
mylookup_symbol PARAMS ((char *, struct block *, namespace_enum,
enum address_class));
static struct block *
@ -3731,7 +3731,7 @@ static struct symbol *
mylookup_symbol (name, block, namespace, class)
char *name;
register struct block *block;
enum namespace namespace;
namespace_enum namespace;
enum address_class class;
{
register int bot, top, inc;