diff options
Diffstat (limited to 'gdb/breakpoint.c')
-rw-r--r-- | gdb/breakpoint.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index 574d06c..8ccaf43 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -3220,10 +3220,7 @@ remove_breakpoints_pid (int pid) if (bl->pspace != inf->pspace) continue; - if (bl->owner->type == bp_dprintf) - continue; - - if (bl->inserted) + if (bl->inserted && !bl->target_info.persist) { val = remove_breakpoint (bl, mark_uninserted); if (val != 0) |