diff options
author | Kuba Brecka <kuba.brecka@gmail.com> | 2016-04-10 18:57:38 +0000 |
---|---|---|
committer | Kuba Brecka <kuba.brecka@gmail.com> | 2016-04-10 18:57:38 +0000 |
commit | 1aad8fb7720a21e22836d153a3a86eaa67242174 (patch) | |
tree | 3013bbc0e3f7fe6aa7ba9046c2eef953af535125 /lldb/source/Target/InstrumentationRuntime.cpp | |
parent | 8d16199b7b0247cf3047dc294ae5e180b72ac5fd (diff) | |
download | bcm5719-llvm-1aad8fb7720a21e22836d153a3a86eaa67242174.tar.gz bcm5719-llvm-1aad8fb7720a21e22836d153a3a86eaa67242174.zip |
Provide more information in ThreadSanitizer's JSON data. Move remaining TSan logic from SBThread to InstrumentationRuntime plugin.
llvm-svn: 265905
Diffstat (limited to 'lldb/source/Target/InstrumentationRuntime.cpp')
-rw-r--r-- | lldb/source/Target/InstrumentationRuntime.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lldb/source/Target/InstrumentationRuntime.cpp b/lldb/source/Target/InstrumentationRuntime.cpp index 7386c4efa73..af7955f9c34 100644 --- a/lldb/source/Target/InstrumentationRuntime.cpp +++ b/lldb/source/Target/InstrumentationRuntime.cpp @@ -50,3 +50,9 @@ InstrumentationRuntime::IsActive() { return false; } + +lldb::ThreadCollectionSP +InstrumentationRuntime::GetBacktracesFromExtendedStopInfo(StructuredData::ObjectSP info) +{ + return ThreadCollectionSP(new ThreadCollection()); +} |