Message ID | 56ABCEFF.4090506@ericsson.com |
---|---|
State | New |
Headers | show |
--- a/gdb/gdbserver/linux-low.c +++ b/gdb/gdbserver/linux-low.c @@ -1693,7 +1693,10 @@ status_pending_p_callback (struct inferior_list_entry *entry, void *arg) if (!ptid_match (ptid_of (thread), ptid)) return 0; - if (!lwp_resumed (lp)) + /* If we are stabilizing threads, threads have been stopped except the + ones that are moving out of the jump pad. The events of those threads + need to be reported whatever the last_resume_kind is. */ + if (!lwp_resumed (lp) && !stabilizing_threads) return 0;