diff options
author | Pedro Alves <palves@redhat.com> | 2008-06-11 12:56:36 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2008-06-11 12:56:36 +0000 |
commit | 060871df59462ec4085f79033c0fbcf275cda83f (patch) | |
tree | 5f8c4428062f516457c96fa55acf53a986d28ffd /gdb/remote.c | |
parent | 5f5dfcbe1be67ac8e69cbbcc7c99786551d6cbbf (diff) | |
download | gdb-060871df59462ec4085f79033c0fbcf275cda83f.zip gdb-060871df59462ec4085f79033c0fbcf275cda83f.tar.gz gdb-060871df59462ec4085f79033c0fbcf275cda83f.tar.bz2 |
* NEWS: Mention support removal of undocumented S AA p PID stop
reply packet.
* remote.c (remote_wait): Remove undocumented S AA p PID support.
Diffstat (limited to 'gdb/remote.c')
-rw-r--r-- | gdb/remote.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/gdb/remote.c b/gdb/remote.c index 3f7d07b..ddf259c 100644 --- a/gdb/remote.c +++ b/gdb/remote.c @@ -3525,12 +3525,6 @@ Packet: '%s'\n"), status->value.sig = (enum target_signal) (((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; case 'W': /* Target exited. */ { |