diff options
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()); +} |