diff options
author | Jason Molenda <jmolenda@apple.com> | 2013-11-12 23:33:32 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 2013-11-12 23:33:32 +0000 |
commit | 008c45f1a1a7a60736a0afbb03b57f43b11dcf49 (patch) | |
tree | 7114ed975f63a8e96be158e08c350bc9d2bde21e /lldb/source/API/SBThread.cpp | |
parent | 6cd1b9aec4a9f84f9a88679c8cfbe92fbf5fbf81 (diff) | |
download | bcm5719-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/API/SBThread.cpp')
-rw-r--r-- | lldb/source/API/SBThread.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lldb/source/API/SBThread.cpp b/lldb/source/API/SBThread.cpp index 72fe3cf8361..e36d09e1ea9 100644 --- a/lldb/source/API/SBThread.cpp +++ b/lldb/source/API/SBThread.cpp @@ -433,7 +433,6 @@ SBThread::SetThread (const ThreadSP& lldb_object_sp) m_opaque_sp->SetThreadSP (lldb_object_sp); } - lldb::tid_t SBThread::GetThreadID () const { @@ -1283,7 +1282,7 @@ SBThread::GetDescription (SBStream &description) const } SBThread -SBThread::GetExtendedBacktrace (const char *type) +SBThread::GetExtendedBacktraceThread (const char *type) { Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API)); Mutex::Locker api_locker; @@ -1305,7 +1304,7 @@ SBThread::GetExtendedBacktrace (const char *type) SystemRuntime *runtime = process->GetSystemRuntime(); if (runtime) { - ThreadSP new_thread_sp (runtime->GetExtendedBacktrace (real_thread, type_const)); + ThreadSP new_thread_sp (runtime->GetExtendedBacktraceThread (real_thread, type_const)); // Save this in the Process' ExtendedThreadList so a strong pointer retains the // object. process->GetExtendedThreadList().AddThread (new_thread_sp); |