diff options
author | Jason Molenda <jmolenda@apple.com> | 2013-11-06 03:07:33 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 2013-11-06 03:07:33 +0000 |
commit | 95d005c7897870b34ef2d6cdddd0dde700f1b0c3 (patch) | |
tree | a3d4c1dec2d54edee9e410367990d38a69ea4350 /lldb/source/API/SBThread.cpp | |
parent | cae5652838cae65f83aec74728cfdb360c26d42b (diff) | |
download | bcm5719-llvm-95d005c7897870b34ef2d6cdddd0dde700f1b0c3.tar.gz bcm5719-llvm-95d005c7897870b34ef2d6cdddd0dde700f1b0c3.zip |
Rename extended backtrace methods to take out the "ThreadOrigin"
bit from the method names.
<rdar://problem/15314369>
llvm-svn: 194122
Diffstat (limited to 'lldb/source/API/SBThread.cpp')
-rw-r--r-- | lldb/source/API/SBThread.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/API/SBThread.cpp b/lldb/source/API/SBThread.cpp index 8a7877d39c9..4b54b1c0c1c 100644 --- a/lldb/source/API/SBThread.cpp +++ b/lldb/source/API/SBThread.cpp @@ -1283,7 +1283,7 @@ SBThread::GetDescription (SBStream &description) const } SBThread -SBThread::GetThreadOriginExtendedBacktrace (const char *type) +SBThread::GetExtendedBacktrace (const char *type) { Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API)); Mutex::Locker api_locker; @@ -1302,7 +1302,7 @@ SBThread::GetThreadOriginExtendedBacktrace (const char *type) SystemRuntime *runtime = exe_ctx.GetProcessPtr()->GetSystemRuntime(); if (runtime) { - ThreadSP origin_thread = runtime->GetThreadOriginExtendedBacktrace (real_thread, type_const); + ThreadSP origin_thread = runtime->GetExtendedBacktrace (real_thread, type_const); sb_origin_thread.SetThread (origin_thread); } } @@ -1310,7 +1310,7 @@ SBThread::GetThreadOriginExtendedBacktrace (const char *type) else { if (log) - log->Printf ("SBThread(%p)::GetThreadOriginExtendedBacktrace() => error: process is running", exe_ctx.GetThreadPtr()); + log->Printf ("SBThread(%p)::GetExtendedBacktrace() => error: process is running", exe_ctx.GetThreadPtr()); } } |