diff options
Diffstat (limited to 'gdb/gdbserver')
-rw-r--r-- | gdb/gdbserver/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/gdbserver/linux-low.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/gdbserver/ChangeLog b/gdb/gdbserver/ChangeLog index 64e1e77..494a0cd 100644 --- a/gdb/gdbserver/ChangeLog +++ b/gdb/gdbserver/ChangeLog @@ -1,3 +1,8 @@ +2013-01-16 Yao Qi <yao@codesourcery.com> + + * linux-low.c (linux_resume_one_lwp): Don't check + 'lwp->bp_reinsert != 0'. + 2013-01-07 Joel Brobecker <brobecker@adacore.com> Pedro Alves <palves@redhat.com> diff --git a/gdb/gdbserver/linux-low.c b/gdb/gdbserver/linux-low.c index 89988eb..8988509 100644 --- a/gdb/gdbserver/linux-low.c +++ b/gdb/gdbserver/linux-low.c @@ -3192,7 +3192,7 @@ linux_resume_one_lwp (struct lwp_info *lwp, fprintf (stderr, " pending reinsert at 0x%s\n", paddress (lwp->bp_reinsert)); - if (lwp->bp_reinsert != 0 && can_hardware_single_step ()) + if (can_hardware_single_step ()) { if (fast_tp_collecting == 0) { |