aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h
diff options
context:
space:
mode:
authorPavel Labath <pavel@labath.sk>2021-09-27 16:54:00 +0200
committerPavel Labath <pavel@labath.sk>2021-09-28 14:13:50 +0200
commit156cb4cc64bec2b72aad9848f8181b338ff19ebc (patch)
tree397464b60d42d795dd4125caf16455c1732b9ce3 /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h
parent6359a4cdbfb83c67a2a776baba4e3f4fb8334853 (diff)
downloadllvm-156cb4cc64bec2b72aad9848f8181b338ff19ebc.zip
llvm-156cb4cc64bec2b72aad9848f8181b338ff19ebc.tar.gz
llvm-156cb4cc64bec2b72aad9848f8181b338ff19ebc.tar.bz2
[lldb] Remove non-stop mode code
We added some support for this mode back in 2015, but the feature was never productionized. It is completely untested, and there are known major structural lldb issues that need to be resolved before this feature can really be supported. It also complicates making further changes to stop reply packet handling, which is what I am about to do. Differential Revision: https://reviews.llvm.org/D110553
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h')
-rw-r--r--lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h
index 376adfe..fd3fe1c 100644
--- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h
+++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h
@@ -315,8 +315,6 @@ public:
uint32_t length, // Byte Size of breakpoint or watchpoint
std::chrono::seconds interrupt_timeout); // Time to wait for an interrupt
- bool SetNonStopMode(const bool enable);
-
void TestPacketSpeed(const uint32_t num_packets, uint32_t max_send,
uint32_t max_recv, uint64_t recv_amount, bool json,
Stream &strm);