This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from 9755d858f [CMake] Add configure check for sys/event.h new 84c7d20cd Revert yesterdays IPv6 patches new d3a54f54b Fix TestRegisterVariables for clang/arm
The 2 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: cmake/modules/LLDBConfig.cmake | 3 - include/lldb/Host/Config.h | 4 - include/lldb/Host/Config.h.cmake | 4 - include/lldb/Host/MainLoop.h | 95 +------- include/lldb/Host/Socket.h | 7 +- include/lldb/Host/common/TCPSocket.h | 22 +- include/lldb/Host/common/UDPSocket.h | 9 +- include/lldb/Host/linux/AbstractSocket.h | 2 +- include/lldb/Host/posix/DomainSocket.h | 10 +- .../Host/{MainLoop.h => posix/MainLoopPosix.h} | 66 +++--- lldb.xcodeproj/project.pbxproj | 8 +- .../test/lang/c/register_variables/test.c | 13 +- source/Host/CMakeLists.txt | 2 +- source/Host/common/Socket.cpp | 35 ++- source/Host/common/TCPSocket.cpp | 248 +++++++++------------ source/Host/common/UDPSocket.cpp | 84 +++---- source/Host/linux/AbstractSocket.cpp | 4 +- .../Host/posix/ConnectionFileDescriptorPosix.cpp | 4 +- source/Host/posix/DomainSocket.cpp | 35 ++- .../MainLoop.cpp => posix/MainLoopPosix.cpp} | 144 +++--------- .../Android/PlatformAndroidRemoteGDBServer.cpp | 2 +- .../debugserver.xcodeproj/project.pbxproj | 4 - tools/debugserver/source/CMakeLists.txt | 1 - tools/debugserver/source/RNBSocket.cpp | 245 ++++++++++---------- tools/debugserver/source/debugserver.cpp | 16 +- tools/lldb-server/Acceptor.cpp | 3 +- unittests/Host/SocketTest.cpp | 21 +- .../Process/gdb-remote/GDBRemoteTestUtils.cpp | 5 +- unittests/debugserver/RNBSocketTest.cpp | 29 +-- 29 files changed, 425 insertions(+), 700 deletions(-) copy include/lldb/Host/{MainLoop.h => posix/MainLoopPosix.h} (52%) rename source/Host/{common/MainLoop.cpp => posix/MainLoopPosix.cpp} (59%)