From: Pedro Alves Date: Sat, 28 Mar 2009 01:15:13 +0000 (+0000) Subject: * remote.c (remote_stop_ns): If multi-process extensions are off, X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f91d3df5c6156218eb413f35b2b06c1d77103a5e;p=binutils-gdb.git * 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" --- 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))