This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from 2d126e9 Garbage collection is not around anymore, we can remove our s [...] new 20ea9d4 Reapply "Rewrite gdb-remote's SendContinuePacketAndWaitForResponse"
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: lldb.xcodeproj/project.pbxproj | 8 + source/Plugins/Process/gdb-remote/CMakeLists.txt | 1 + .../Process/gdb-remote/GDBRemoteClientBase.cpp | 384 ++++++++++ .../Process/gdb-remote/GDBRemoteClientBase.h | 153 ++++ .../Process/gdb-remote/GDBRemoteCommunication.cpp | 26 - .../Process/gdb-remote/GDBRemoteCommunication.h | 23 - .../gdb-remote/GDBRemoteCommunicationClient.cpp | 818 ++------------------- .../gdb-remote/GDBRemoteCommunicationClient.h | 63 +- .../gdb-remote/GDBRemoteRegisterContext.cpp | 18 +- .../Process/gdb-remote/ProcessGDBRemote.cpp | 163 +++- .../Plugins/Process/gdb-remote/ProcessGDBRemote.h | 18 +- source/Utility/StringExtractor.cpp | 1 + unittests/CMakeLists.txt | 1 + unittests/Process/CMakeLists.txt | 1 + unittests/Process/gdb-remote/CMakeLists.txt | 3 + .../Process/gdb-remote/GDBRemoteClientBaseTest.cpp | 428 +++++++++++ 16 files changed, 1214 insertions(+), 895 deletions(-) create mode 100644 source/Plugins/Process/gdb-remote/GDBRemoteClientBase.cpp create mode 100644 source/Plugins/Process/gdb-remote/GDBRemoteClientBase.h create mode 100644 unittests/Process/CMakeLists.txt create mode 100644 unittests/Process/gdb-remote/CMakeLists.txt create mode 100644 unittests/Process/gdb-remote/GDBRemoteClientBaseTest.cpp