and GDB is requesting the whole process to stop, sent "vCont;t",
not "vCont;t:-1"
2009-03-28 Pedro Alves <pedro@codesourcery.com>
+ * 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 <pedro@codesourcery.com>
+
* inf-loop.c (inferior_event_handler): Avoid calling is_running on
null inferior_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))