This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from c45ded6 Fixup r277011 - wrong use of infinite timeout new d337908 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: source/Plugins/Process/gdb-remote/CMakeLists.txt | 1 + .../Process/gdb-remote/GDBRemoteClientBase.cpp | 378 ++++++++++ .../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 | 396 ++++++++++ 15 files changed, 1168 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