* remote-utils.c (getpkt): Also generate remote-debug

information if noack_mode is set.
This commit is contained in:
Pierre Muller 2009-02-14 00:07:51 +00:00
parent 1a779e2cb0
commit 86b1f9c56c
2 changed files with 13 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2009-02-14 Pierre Muller <muller@ics.u-strasbg.fr>
* remote-utils.c (getpkt): Also generate remote-debug
information if noack_mode is set.
2009-02-06 Pedro Alves <pedro@codesourcery.com>
* server.c (handle_query): Report qXfer:siginfo:read and

View File

@ -823,6 +823,14 @@ getpkt (char *buf)
fflush (stderr);
}
}
else
{
if (remote_debug)
{
fprintf (stderr, "getpkt (\"%s\"); [no ack sent] \n", buf);
fflush (stderr);
}
}
return bp - buf;
}