This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from 7b6d2b0 Check for null new b8c8103 [NFC] Darwin llgs support from Week of Code
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/Host/Debug.h | 2 +- include/lldb/Host/common/NativeProcessProtocol.h | 18 +- include/lldb/lldb-private-forward.h | 1 + .../tools/lldb-server/TestGdbRemoteProcessInfo.py | 17 + .../test/tools/lldb-server/TestLldbGdbServer.py | 95 - .../tools/lldb-server/{ => exit-code}/Makefile | 4 +- .../lldb-server/exit-code/TestGdbRemoteExitCode.py | 124 ++ .../test/tools/lldb-server/gdbremote_testcase.py | 15 +- .../tools/lldb-server/{ => host-info}/Makefile | 4 +- .../lldb-server/host-info/TestGdbRemoteHostInfo.py | 125 ++ source/Host/common/NativeProcessProtocol.cpp | 28 +- .../Plugins/Process/Darwin}/CFBundle.cpp | 0 .../Plugins/Process/Darwin}/CFBundle.h | 0 .../Plugins/Process/Darwin}/CFString.cpp | 0 .../Plugins/Process/Darwin}/CFString.h | 0 .../Plugins/Process/Darwin}/CFUtils.h | 0 .../Process/Darwin/DarwinProcessLauncher.cpp | 737 ++++++++ .../Plugins/Process/Darwin/DarwinProcessLauncher.h | 51 + source/Plugins/Process/Darwin/LaunchFlavor.h | 34 + source/Plugins/Process/Darwin/MachException.cpp | 684 ++++++++ .../Plugins/Process/Darwin}/MachException.h | 68 +- .../Plugins/Process/Darwin/NativeProcessDarwin.cpp | 1825 ++++++++++++++++++++ .../Plugins/Process/Darwin/NativeProcessDarwin.h | 479 +++++ .../Plugins/Process/Darwin/NativeThreadDarwin.cpp | 324 ++++ source/Plugins/Process/Darwin/NativeThreadDarwin.h | 216 +++ .../Process/Darwin/NativeThreadListDarwin.cpp | 355 ++-- .../Process/Darwin/NativeThreadListDarwin.h | 162 ++ .../Plugins/Process/Linux/NativeProcessLinux.cpp | 21 - .../GDBRemoteCommunicationServerCommon.cpp | 29 +- .../GDBRemoteCommunicationServerLLGS.cpp | 3 +- source/Target/UnixSignals.cpp | 2 + .../Darwin/resources/lldb-server-Info.plist} | 4 +- .../resources/lldb-server-entitlements.plist} | 0 .../lldb-server-macos-entitlements.plist} | 0 .../Darwin/resources/lldb-server-mig.defs} | 0 35 files changed, 5137 insertions(+), 290 deletions(-) copy packages/Python/lldbsuite/test/tools/lldb-server/{ => exit-code}/Makefile (83%) create mode 100644 packages/Python/lldbsuite/test/tools/lldb-server/exit-code/Test [...] copy packages/Python/lldbsuite/test/tools/lldb-server/{ => host-info}/Makefile (83%) create mode 100644 packages/Python/lldbsuite/test/tools/lldb-server/host-info/Test [...] copy {tools/debugserver/source/MacOSX => source/Plugins/Process/Darwin}/CFBundle.c [...] copy {tools/debugserver/source/MacOSX => source/Plugins/Process/Darwin}/CFBundle.h (100%) copy {tools/debugserver/source/MacOSX => source/Plugins/Process/Darwin}/CFString.c [...] copy {tools/debugserver/source/MacOSX => source/Plugins/Process/Darwin}/CFString.h (100%) copy {tools/debugserver/source/MacOSX => source/Plugins/Process/Darwin}/CFUtils.h (100%) create mode 100644 source/Plugins/Process/Darwin/DarwinProcessLauncher.cpp create mode 100644 source/Plugins/Process/Darwin/DarwinProcessLauncher.h create mode 100644 source/Plugins/Process/Darwin/LaunchFlavor.h create mode 100644 source/Plugins/Process/Darwin/MachException.cpp copy {tools/debugserver/source/MacOSX => source/Plugins/Process/Darwin}/MachExcept [...] create mode 100644 source/Plugins/Process/Darwin/NativeProcessDarwin.cpp create mode 100644 source/Plugins/Process/Darwin/NativeProcessDarwin.h create mode 100644 source/Plugins/Process/Darwin/NativeThreadDarwin.cpp create mode 100644 source/Plugins/Process/Darwin/NativeThreadDarwin.h copy tools/debugserver/source/MacOSX/MachThreadList.cpp => source/Plugins/Process/ [...] create mode 100644 source/Plugins/Process/Darwin/NativeThreadListDarwin.h copy tools/{lldb-mi/lldb-Info.plist => lldb-server/Darwin/resources/lldb-server-In [...] copy tools/{debugserver/source/debugserver-entitlements.plist => lldb-server/Darwi [...] copy tools/{debugserver/source/debugserver-macosx-entitlements.plist => lldb-serve [...] copy tools/{debugserver/source/MacOSX/dbgnub-mig.defs => lldb-server/Darwin/resour [...]