* NEWS: Mention support removal of undocumented S AA p PID stop
reply packet. * remote.c (remote_wait): Remove undocumented S AA p PID support.
This commit is contained in:
parent
5f5dfcbe1b
commit
060871df59
3 changed files with 13 additions and 6 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
2008-06-11 Pedro Alves <pedro@codesourcery.com>
|
||||||
|
|
||||||
|
* NEWS: Mention support removal of undocumented S AA p PID stop
|
||||||
|
reply packet.
|
||||||
|
|
||||||
|
* remote.c (remote_wait): Remove undocumented S AA p PID support.
|
||||||
|
|
||||||
2008-06-10 Stan Shebs <stan@codesourcery.com>
|
2008-06-10 Stan Shebs <stan@codesourcery.com>
|
||||||
|
|
||||||
* MAINTAINERS: Update my affiliation and address.
|
* MAINTAINERS: Update my affiliation and address.
|
||||||
|
|
6
gdb/NEWS
6
gdb/NEWS
|
@ -19,6 +19,12 @@ completions will be "f1" and "f2".
|
||||||
qSearch:memory:
|
qSearch:memory:
|
||||||
Search memory for a sequence of bytes.
|
Search memory for a sequence of bytes.
|
||||||
|
|
||||||
|
* Removed remote protocol undocumented extension
|
||||||
|
|
||||||
|
An undocumented extension to the remote protocol's `S' stop reply
|
||||||
|
packet that permited the stub to pass a process id was removed.
|
||||||
|
Remote servers should use the `T' stop reply packet instead.
|
||||||
|
|
||||||
* The "disassemble" command now supports an optional /m modifier to print mixed
|
* The "disassemble" command now supports an optional /m modifier to print mixed
|
||||||
source+assembly.
|
source+assembly.
|
||||||
|
|
||||||
|
|
|
@ -3525,12 +3525,6 @@ Packet: '%s'\n"),
|
||||||
status->value.sig = (enum target_signal)
|
status->value.sig = (enum target_signal)
|
||||||
(((fromhex (buf[1])) << 4) + (fromhex (buf[2])));
|
(((fromhex (buf[1])) << 4) + (fromhex (buf[2])));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (buf[3] == 'p')
|
|
||||||
{
|
|
||||||
thread_num = strtol ((const char *) &buf[4], NULL, 16);
|
|
||||||
record_currthread (thread_num);
|
|
||||||
}
|
|
||||||
goto got_status;
|
goto got_status;
|
||||||
case 'W': /* Target exited. */
|
case 'W': /* Target exited. */
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue