* 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:
parent
59c2be48f9
commit
49d607d260
@ -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
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user