diff options
author | Jason Molenda <jmolenda@apple.com> | 2013-11-05 04:25:57 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 2013-11-05 04:25:57 +0000 |
commit | b4db43fad68c5c437075bcbf29d9ea5b5fc68f3a (patch) | |
tree | 30c615cb8ee5c73e8bc6c446a4c11dea72631a99 /lldb/source | |
parent | eef510667b18263f59da78f7614ecf6bc07802a7 (diff) | |
download | bcm5719-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.cpp | 8 |
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; } - |