summaryrefslogtreecommitdiffstats
path: root/lldb/source
diff options
context:
space:
mode:
authorJason Molenda <jmolenda@apple.com>2013-11-05 04:25:57 +0000
committerJason Molenda <jmolenda@apple.com>2013-11-05 04:25:57 +0000
commitb4db43fad68c5c437075bcbf29d9ea5b5fc68f3a (patch)
tree30c615cb8ee5c73e8bc6c446a4c11dea72631a99 /lldb/source
parenteef510667b18263f59da78f7614ecf6bc07802a7 (diff)
downloadbcm5719-llvm-b4db43fad68c5c437075bcbf29d9ea5b5fc68f3a.tar.gz
bcm5719-llvm-b4db43fad68c5c437075bcbf29d9ea5b5fc68f3a.zip
Add a GetThreadOriginExtendedBacktraceTypes method to the
SystemRuntime class. <rdar://problem/15314369> llvm-svn: 194045
Diffstat (limited to 'lldb/source')
-rw-r--r--lldb/source/Target/SystemRuntime.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/lldb/source/Target/SystemRuntime.cpp b/lldb/source/Target/SystemRuntime.cpp
index ceec6b61168..bac512ebd25 100644
--- a/lldb/source/Target/SystemRuntime.cpp
+++ b/lldb/source/Target/SystemRuntime.cpp
@@ -59,9 +59,9 @@ SystemRuntime::ModulesDidLoad (ModuleList &module_list)
{
}
-uint32_t
-SystemRuntime::GetStatus (Stream &strm, ExecutionContext &exe_ctx)
+std::vector<ConstString>
+SystemRuntime::GetThreadOriginExtendedBacktraceTypes ()
{
- return 0;
+ std::vector<ConstString> types;
+ return types;
}
-
OpenPOWER on IntegriCloud