diff options
Diffstat (limited to 'gdb/breakpoint.c')
-rw-r--r-- | gdb/breakpoint.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index b6445bb..a0beb15 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -11498,7 +11498,8 @@ static int all_locations_are_pending (struct bp_location *loc) { for (; loc; loc = loc->next) - if (!loc->shlib_disabled) + if (!loc->shlib_disabled + && !loc->pspace->executing_startup) return 0; return 1; } |