This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from 392eeaa fix format specifier warnings new 753782a Make LLDB skip server-client roundtrip for signals that don't [...]
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: include/lldb/Target/Process.h | 4 +- include/lldb/Target/UnixSignals.h | 21 ++++ .../gdb-remote/GDBRemoteCommunicationClient.cpp | 33 +++++ .../gdb-remote/GDBRemoteCommunicationClient.h | 6 + .../Process/gdb-remote/ProcessGDBRemote.cpp | 39 +++++- .../Plugins/Process/gdb-remote/ProcessGDBRemote.h | 3 + source/Target/Process.cpp | 14 +++ source/Target/UnixSignals.cpp | 39 ++++++ unittests/CMakeLists.txt | 1 + .../GDBRemoteCommunicationClientTest.cpp | 24 ++++ unittests/Signals/CMakeLists.txt | 6 + unittests/Signals/UnixSignalsTest.cpp | 140 +++++++++++++++++++++ 12 files changed, 328 insertions(+), 2 deletions(-) create mode 100644 unittests/Signals/CMakeLists.txt create mode 100644 unittests/Signals/UnixSignalsTest.cpp