diff options
Diffstat (limited to 'lldb/include')
-rw-r--r-- | lldb/include/lldb/API/SBProcess.h | 4 | ||||
-rw-r--r-- | lldb/include/lldb/API/SBThread.h | 2 | ||||
-rw-r--r-- | lldb/include/lldb/Target/SystemRuntime.h | 6 |
3 files changed, 6 insertions, 6 deletions
diff --git a/lldb/include/lldb/API/SBProcess.h b/lldb/include/lldb/API/SBProcess.h index 112ed35e540..4ecaeaa4992 100644 --- a/lldb/include/lldb/API/SBProcess.h +++ b/lldb/include/lldb/API/SBProcess.h @@ -283,7 +283,7 @@ public: /// available. //------------------------------------------------------------------ uint32_t - GetNumThreadOriginExtendedBacktraceTypes (); + GetNumExtendedBacktraceTypes (); //------------------------------------------------------------------ /// Return the name of one of the thread-origin extended backtrace @@ -299,7 +299,7 @@ public: /// The name at that index. //------------------------------------------------------------------ const char * - GetThreadOriginExtendedBacktraceTypeAtIndex (uint32_t idx); + GetExtendedBacktraceTypeAtIndex (uint32_t idx); protected: friend class SBAddress; diff --git a/lldb/include/lldb/API/SBThread.h b/lldb/include/lldb/API/SBThread.h index d2d7346e283..d062d712130 100644 --- a/lldb/include/lldb/API/SBThread.h +++ b/lldb/include/lldb/API/SBThread.h @@ -202,7 +202,7 @@ public: GetStatus (lldb::SBStream &status) const; SBThread - GetThreadOriginExtendedBacktrace (const char *type); + GetExtendedBacktrace (const char *type); protected: friend class SBBreakpoint; diff --git a/lldb/include/lldb/Target/SystemRuntime.h b/lldb/include/lldb/Target/SystemRuntime.h index ffa97c6af08..6c0a4205d5f 100644 --- a/lldb/include/lldb/Target/SystemRuntime.h +++ b/lldb/include/lldb/Target/SystemRuntime.h @@ -128,7 +128,7 @@ public: /// backtrace capabilities are available. //------------------------------------------------------------------ virtual std::vector<ConstString> - GetThreadOriginExtendedBacktraceTypes (); + GetExtendedBacktraceTypes (); //------------------------------------------------------------------ /// Return a Thread which shows the origin of this thread's creation. @@ -147,7 +147,7 @@ public: /// /// @param [in] type /// The type of thread origin being requested. The types supported - /// are returned from SystemRuntime::GetThreadOriginExtendedBacktraceTypes. + /// are returned from SystemRuntime::GetExtendedBacktraceTypes. /// /// @return /// A ThreadSP which will have a StackList of frames. This Thread will @@ -158,7 +158,7 @@ public: /// An empty ThreadSP will be returned if no thread origin is available. //------------------------------------------------------------------ virtual lldb::ThreadSP - GetThreadOriginExtendedBacktrace (lldb::ThreadSP thread, ConstString type); + GetExtendedBacktrace (lldb::ThreadSP thread, ConstString type); protected: //------------------------------------------------------------------ |