diff options
author | Pavel Labath <pavel@labath.sk> | 2021-10-07 13:07:42 +0200 |
---|---|---|
committer | Pavel Labath <pavel@labath.sk> | 2021-10-07 13:09:27 +0200 |
commit | 81a2f39307a1f2169203abeb66c7bb00b5496edc (patch) | |
tree | 79cbdd6d9e7f2a172b9553c179865a35f3f84794 /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h | |
parent | 430ab92910e2423e61e55c9b396ba4c54105fe2b (diff) | |
download | llvm-81a2f39307a1f2169203abeb66c7bb00b5496edc.zip llvm-81a2f39307a1f2169203abeb66c7bb00b5496edc.tar.gz llvm-81a2f39307a1f2169203abeb66c7bb00b5496edc.tar.bz2 |
[lldb/gdb-remote] Delete SendPacketsAndConcatenateResponses
ReadExtFeature provides equivalent functionality. Also fix a but in
ReadExtFeature, which prevented it from being used for auxv data (it
contains nul characters).
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h index fd3fe1c..9b8b4cb 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h @@ -65,27 +65,6 @@ public: // we are communicating with it. bool HandshakeWithServer(Status *error_ptr); - // For packets which specify a range of output to be returned, - // return all of the output via a series of request packets of the form - // <prefix>0,<size> - // <prefix><size>,<size> - // <prefix><size>*2,<size> - // <prefix><size>*3,<size> - // ... - // until a "$l..." packet is received, indicating the end. - // (size is in hex; this format is used by a standard gdbserver to - // return the given portion of the output specified by <prefix>; - // for example, "qXfer:libraries-svr4:read::fff,1000" means - // "return a chunk of the xml description file for shared - // library load addresses, where the chunk starts at offset 0xfff - // and continues for 0x1000 bytes"). - // Concatenate the resulting server response packets together and - // return in response_string. If any packet fails, the return value - // indicates that failure and the returned string value is undefined. - PacketResult - SendPacketsAndConcatenateResponses(const char *send_payload_prefix, - std::string &response_string); - bool GetThreadSuffixSupported(); // This packet is usually sent first and the boolean return value |