diff options
| author | Jason Molenda <jmolenda@apple.com> | 2013-11-12 07:02:07 +0000 |
|---|---|---|
| committer | Jason Molenda <jmolenda@apple.com> | 2013-11-12 07:02:07 +0000 |
| commit | 750ea692e83bd84797eb357316a41af9acc41b8b (patch) | |
| tree | 490491909c95efa2dbf5b5c33062e252d4937e3f /lldb/source/Target | |
| parent | b9a29f2782313ef6b73c772f0095c1f6e1f8b2c8 (diff) | |
| download | bcm5719-llvm-750ea692e83bd84797eb357316a41af9acc41b8b.tar.gz bcm5719-llvm-750ea692e83bd84797eb357316a41af9acc41b8b.zip | |
Add initial --extended / -e support to thread backtrace.
llvm-svn: 194455
Diffstat (limited to 'lldb/source/Target')
| -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 7ce150f4127..c885aa774c7 100644 --- a/lldb/source/Target/SystemRuntime.cpp +++ b/lldb/source/Target/SystemRuntime.cpp @@ -33,7 +33,8 @@ SystemRuntime::FindPlugin (Process *process) // SystemRuntime constructor //---------------------------------------------------------------------- SystemRuntime::SystemRuntime(Process *process) : - m_process (process) + m_process (process), + m_types () { } @@ -59,11 +60,10 @@ SystemRuntime::ModulesDidLoad (ModuleList &module_list) { } -std::vector<ConstString> +const std::vector<ConstString> & SystemRuntime::GetExtendedBacktraceTypes () { - std::vector<ConstString> types; - return types; + return m_types; } ThreadSP |

