This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from 16119cb Add IR fixups for RenderScript ABI mismatch between ARMV7 fro [...] new af25f5b Clean up vestigial remnants of locking primitives
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/Core/Event.h | 4 +- include/lldb/Core/Listener.h | 34 +- include/lldb/Core/ThreadSafeDenseMap.h | 27 +- include/lldb/Core/ThreadSafeDenseSet.h | 89 +++-- include/lldb/Host/Condition.h | 123 ------- include/lldb/Host/Editline.h | 1 - include/lldb/Host/Mutex.h | 313 ---------------- include/lldb/Host/Predicate.h | 146 +++++--- include/lldb/Host/ProcessRunLock.h | 1 - include/lldb/Target/Process.h | 24 +- source/API/SBListener.cpp | 31 +- source/Core/Communication.cpp | 14 +- source/Core/Debugger.cpp | 4 +- source/Core/Listener.cpp | 113 +++--- source/Host/CMakeLists.txt | 4 - source/Host/common/Condition.cpp | 108 ------ source/Host/common/Host.cpp | 12 +- source/Host/common/Mutex.cpp | 398 --------------------- .../Host/posix/ConnectionFileDescriptorPosix.cpp | 6 +- source/Host/windows/Condition.cpp | 98 ----- source/Host/windows/Mutex.cpp | 109 ------ .../MacOSX-DYLD/DynamicLoaderDarwin.h | 1 - source/Plugins/Platform/Linux/PlatformLinux.cpp | 3 +- .../Process/MacOSX-Kernel/CommunicationKDP.cpp | 5 +- .../Process/MacOSX-Kernel/CommunicationKDP.h | 2 +- .../Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp | 2 +- .../Process/gdb-remote/GDBRemoteCommunication.cpp | 61 ++-- .../Process/gdb-remote/GDBRemoteCommunication.h | 15 +- .../gdb-remote/GDBRemoteCommunicationClient.cpp | 86 ++--- .../gdb-remote/GDBRemoteCommunicationClient.h | 4 +- .../gdb-remote/GDBRemoteRegisterContext.cpp | 12 +- .../Process/gdb-remote/ProcessGDBRemote.cpp | 11 +- source/Target/Process.cpp | 137 +++---- source/Target/Target.cpp | 11 +- 34 files changed, 404 insertions(+), 1605 deletions(-) delete mode 100644 include/lldb/Host/Condition.h delete mode 100644 include/lldb/Host/Mutex.h delete mode 100644 source/Host/common/Condition.cpp delete mode 100644 source/Host/common/Mutex.cpp delete mode 100644 source/Host/windows/Condition.cpp delete mode 100644 source/Host/windows/Mutex.cpp