* infrun.c (handle_inferior_event): Check stop_stack_dummy if handling

BPSTAT_WHAT_CHECK_SHLIBS.
This commit is contained in:
Paul Brook 2004-01-21 16:32:07 +00:00
parent dbf5be1caf
commit 877522dba4
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2004-01-21 Paul Brook <paul@codesourcery.com>
* infrun.c (handle_inferior_event): Check stop_stack_dummy if handling
BPSTAT_WHAT_CHECK_SHLIBS.
2004-01-21 Paul Brook <paul@codesourcery.com> 2004-01-21 Paul Brook <paul@codesourcery.com>
* MAINTAINERS: Add myself to write-after-approval. * MAINTAINERS: Add myself to write-after-approval.

View File

@ -2301,7 +2301,7 @@ process_event_stop_test:
gdb of events. This allows the user to get control gdb of events. This allows the user to get control
and place breakpoints in initializer routines for and place breakpoints in initializer routines for
dynamically loaded objects (among other things). */ dynamically loaded objects (among other things). */
if (stop_on_solib_events) if (stop_on_solib_events || stop_stack_dummy)
{ {
stop_stepping (ecs); stop_stepping (ecs);
return; return;