* osfsolib.c (solib_create_inferior_hook): Reset stop_soon_quietly

after shared library symbol reading to get rid of warning from
	heuristic_proc_start.
This commit is contained in:
Peter Schauer 1993-10-12 19:37:14 +00:00
parent 59c2be48f9
commit 49d607d260
2 changed files with 13 additions and 1 deletions

View File

@ -1,3 +1,9 @@
Tue Oct 12 12:33:09 1993 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
* osfsolib.c (solib_create_inferior_hook): Reset stop_soon_quietly
after shared library symbol reading to get rid of warning from
heuristic_proc_start.
Tue Oct 12 12:01:29 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
* remote-sim.c: fix unterminated character string

View File

@ -746,9 +746,15 @@ solib_create_inferior_hook()
wait_for_inferior ();
}
while (stop_signal != SIGTRAP);
stop_soon_quietly = 0;
/* solib_add will call reinit_frame_cache via symbol_file_add.
But we are stopped in the runtime loader and we do not have symbols
for the runtime loader. So heuristic_proc_start will be called
and will put out an annoying warning.
Resetting stop_soon_quietly after symbol loading suppresses
the warning. */
solib_add ((char *) 0, 0, (struct target_ops *) 0);
stop_soon_quietly = 0;
}