This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from 24a5f2971 Fix incorrect use of std::unique new 5aa8e3aff Expose process instance info via SB API
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/API/LLDB.h | 1 + include/lldb/API/SBDefines.h | 1 + include/lldb/API/SBFileSpec.h | 1 + include/lldb/API/SBProcess.h | 10 ++ include/lldb/API/SBProcessInfo.h | 64 +++++++++ .../TestDefaultConstructorForAPIObjects.py | 11 ++ .../default-constructor/sb_process_info.py | 22 ++++ .../test/python_api/process/TestProcessAPI.py | 63 +++++++++ scripts/interface/SBProcess.i | 12 ++ scripts/interface/SBProcessInfo.i | 66 ++++++++++ scripts/lldb.swig | 2 + source/API/CMakeLists.txt | 1 + source/API/SBProcess.cpp | 10 ++ source/API/SBProcessInfo.cpp | 145 +++++++++++++++++++++ 14 files changed, 409 insertions(+) create mode 100644 include/lldb/API/SBProcessInfo.h create mode 100644 packages/Python/lldbsuite/test/python_api/default-constructor/s [...] create mode 100644 scripts/interface/SBProcessInfo.i create mode 100644 source/API/SBProcessInfo.cpp