diff options
author | Greg Clayton <gclayton@apple.com> | 2011-04-04 18:18:57 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2011-04-04 18:18:57 +0000 |
commit | 9b1e1cdf231e25e50ba565bee77566949dd9a676 (patch) | |
tree | c1103c123f8b738cb29d8928c93db1d2da197dea /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.h | |
parent | 13ce236c4cbd9b1d2883ad78b2b8658f7638e08d (diff) | |
download | bcm5719-llvm-9b1e1cdf231e25e50ba565bee77566949dd9a676.tar.gz bcm5719-llvm-9b1e1cdf231e25e50ba565bee77566949dd9a676.zip |
Added a speed test to the GDBRemoteCommunicationClient and
GDBRemoteCommunicationServer classes. This involved adding a new packet
named "qSpeedTest" which can test the speed of a packet send/response pairs
using a wide variety of send/recv packet sizes.
Added a few new connection classes: one for shared memory, and one for using
mach messages (Apple only). The mach message stuff is experimental and not
working yet, but added so I don't lose the code. The shared memory stuff
uses pretty standard calls to setup shared memory.
llvm-svn: 128837
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.h')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.h b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.h index 22fb7be4e9f..02440a2db96 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.h +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.h @@ -86,6 +86,9 @@ protected: Handle_qGroupName (StringExtractorGDBRemote &packet); bool + Handle_qSpeedTest (StringExtractorGDBRemote &packet); + + bool Handle_QStartNoAckMode (StringExtractorGDBRemote &packet); private: |