This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from ebbcc4701 Remove the home-grown android toolchain file and all referenc [...] new dba7b8f22 Initial implementation of SB APIs for Tracing support.
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 | 2 + include/lldb/API/SBDefines.h | 2 + include/lldb/API/SBError.h | 1 + include/lldb/API/SBProcess.h | 27 +++++ include/lldb/API/SBStructuredData.h | 10 +- include/lldb/API/SBTrace.h | 122 +++++++++++++++++++++ include/lldb/API/SBTraceOptions.h | 58 ++++++++++ .../lldb/Core/StructuredDataImpl.h | 75 +++++-------- include/lldb/Core/TraceOptions.h | 62 +++++++++++ include/lldb/Target/Process.h | 74 +++++++++++++ include/lldb/lldb-enumerations.h | 7 ++ include/lldb/lldb-forward.h | 4 + scripts/interface/SBProcess.i | 3 + scripts/interface/SBStructuredData.i | 3 + scripts/interface/SBTrace.i | 34 ++++++ scripts/interface/SBTraceOptions.i | 38 +++++++ scripts/lldb.swig | 4 + source/API/CMakeLists.txt | 2 + source/API/SBProcess.cpp | 22 ++++ source/API/SBStructuredData.cpp | 81 +++----------- source/API/SBTrace.cpp | 109 ++++++++++++++++++ source/API/SBTraceOptions.cpp | 94 ++++++++++++++++ 22 files changed, 716 insertions(+), 118 deletions(-) create mode 100644 include/lldb/API/SBTrace.h create mode 100644 include/lldb/API/SBTraceOptions.h copy source/API/SBStructuredData.cpp => include/lldb/Core/StructuredDataImpl.h (51%) create mode 100644 include/lldb/Core/TraceOptions.h create mode 100644 scripts/interface/SBTrace.i create mode 100644 scripts/interface/SBTraceOptions.i create mode 100644 source/API/SBTrace.cpp create mode 100644 source/API/SBTraceOptions.cpp