diff --git a/gdb/gdbserver/ChangeLog b/gdb/gdbserver/ChangeLog index 3d694aced7b..3d00ed431db 100644 --- a/gdb/gdbserver/ChangeLog +++ b/gdb/gdbserver/ChangeLog @@ -1,3 +1,8 @@ +2015-11-30 Pedro Alves + + * linux-low.c (resume_stopped_resumed_lwps): Don't check whether + the thread's last_resume_kind was resume_stop. + 2015-11-30 Pedro Alves * linux-low.c (linux_attach): In non-stop mode, wait for one stop diff --git a/gdb/gdbserver/linux-low.c b/gdb/gdbserver/linux-low.c index 69fda7fe702..1f7d8d17f62 100644 --- a/gdb/gdbserver/linux-low.c +++ b/gdb/gdbserver/linux-low.c @@ -2409,7 +2409,6 @@ resume_stopped_resumed_lwps (struct inferior_list_entry *entry) if (lp->stopped && !lp->suspended && !lp->status_pending_p - && thread->last_resume_kind != resume_stop && thread->last_status.kind == TARGET_WAITKIND_IGNORE) { int step = thread->last_resume_kind == resume_step;