From 1515ff18db303569b23d0c14478b1862aba2caa6 Mon Sep 17 00:00:00 2001 From: John Gilmore Date: Tue, 17 Sep 1991 00:25:07 +0000 Subject: [PATCH] Small fixes from Peter Schauer: * infrun.c (child_attach): Lint. * solib.c (find_solib): Handle shared libs version 2. --- gdb/infrun.c | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/gdb/infrun.c b/gdb/infrun.c index b6f6a8f43d..a0776c8b81 100644 --- a/gdb/infrun.c +++ b/gdb/infrun.c @@ -734,7 +734,7 @@ child_attach (args, from_tty) target_terminal_inferior (); wait_for_inferior (); #ifdef SOLIB_ADD - solib_add (NULL, 0); + SOLIB_ADD ((char *)0, from_tty, (struct target_ops *)0); #endif normal_stop (); #endif /* ATTACH_DETACH */ @@ -1410,19 +1410,24 @@ Further execution is probably impossible.\n"); return; /* Select innermost stack frame except on return from a stack dummy routine, - or if the program has exited. */ + or if the program has exited. Print it without a level number if + we have changed functions or hit a breakpoint. Print source line + if we have one. */ if (!stop_stack_dummy) { select_frame (get_current_frame (), 0); if (stop_print_frame) { - int source_only = bpstat_print (stop_bpstat); - print_sel_frame - (source_only - || (stop_step + int source_only; + + source_only = bpstat_print (stop_bpstat); + source_only = source_only || + ( stop_step && step_frame_address == stop_frame_address - && step_start_function == find_pc_function (stop_pc))); + && step_start_function == find_pc_function (stop_pc)); + + print_stack_frame (selected_frame, -1, source_only? -1: 1); /* Display the auto-display expressions. */ do_displays (); -- 2.34.1