From f91d3df5c6156218eb413f35b2b06c1d77103a5e Mon Sep 17 00:00:00 2001 From: Pedro Alves Date: Sat, 28 Mar 2009 01:15:13 +0000 Subject: [PATCH] * remote.c (remote_stop_ns): If multi-process extensions are off, and GDB is requesting the whole process to stop, sent "vCont;t", not "vCont;t:-1" --- gdb/ChangeLog | 6 ++++++ gdb/remote.c | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index b156123ab25..679f6cdad63 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2009-03-28 Pedro Alves + + * remote.c (remote_stop_ns): If multi-process extensions are off, + and GDB is requesting the whole process to stop, sent "vCont;t", + not "vCont;t:-1" + 2009-03-28 Pedro Alves * inf-loop.c (inferior_event_handler): Avoid calling is_running on diff --git a/gdb/remote.c b/gdb/remote.c index d4cf72c45cb..4173aaa54d2 100644 --- a/gdb/remote.c +++ b/gdb/remote.c @@ -3945,13 +3945,13 @@ remote_stop_ns (ptid_t ptid) if (!rs->support_vCont_t) error (_("Remote server does not support stopping threads")); - if (ptid_equal (ptid, minus_one_ptid)) + if (ptid_equal (ptid, minus_one_ptid) + || (!remote_multi_process_p (rs) && ptid_is_pid (ptid))) p += xsnprintf (p, endp - p, "vCont;t"); else { ptid_t nptid; - /* Step inferior_ptid. */ p += xsnprintf (p, endp - p, "vCont;t:"); if (ptid_is_pid (ptid)) -- 2.30.2