summaryrefslogtreecommitdiffstats
path: root/lldb/source/Commands/CommandObjectThread.cpp
diff options
context:
space:
mode:
authorJason Molenda <jmolenda@apple.com>2013-11-12 23:33:32 +0000
committerJason Molenda <jmolenda@apple.com>2013-11-12 23:33:32 +0000
commit008c45f1a1a7a60736a0afbb03b57f43b11dcf49 (patch)
tree7114ed975f63a8e96be158e08c350bc9d2bde21e /lldb/source/Commands/CommandObjectThread.cpp
parent6cd1b9aec4a9f84f9a88679c8cfbe92fbf5fbf81 (diff)
downloadbcm5719-llvm-008c45f1a1a7a60736a0afbb03b57f43b11dcf49.tar.gz
bcm5719-llvm-008c45f1a1a7a60736a0afbb03b57f43b11dcf49.zip
Change SBThread::GetExtendedBacktrace to
SBThread::GetExtendedBacktraceThread to make it more clear what is being returned. llvm-svn: 194531
Diffstat (limited to 'lldb/source/Commands/CommandObjectThread.cpp')
-rw-r--r--lldb/source/Commands/CommandObjectThread.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectThread.cpp b/lldb/source/Commands/CommandObjectThread.cpp
index bfe9541154a..10d661882c9 100644
--- a/lldb/source/Commands/CommandObjectThread.cpp
+++ b/lldb/source/Commands/CommandObjectThread.cpp
@@ -180,7 +180,7 @@ protected:
const std::vector<ConstString> &types = runtime->GetExtendedBacktraceTypes();
for (auto type : types)
{
- ThreadSP ext_thread_sp = runtime->GetExtendedBacktrace (thread->shared_from_this(), type);
+ ThreadSP ext_thread_sp = runtime->GetExtendedBacktraceThread (thread->shared_from_this(), type);
if (ext_thread_sp && ext_thread_sp->IsValid ())
{
const uint32_t num_frames_with_source = 0;
OpenPOWER on IntegriCloud