diff options
Diffstat (limited to 'lldb/source/API/SBThread.cpp')
-rw-r--r-- | lldb/source/API/SBThread.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lldb/source/API/SBThread.cpp b/lldb/source/API/SBThread.cpp index 0489dc5605d..006efc79132 100644 --- a/lldb/source/API/SBThread.cpp +++ b/lldb/source/API/SBThread.cpp @@ -452,7 +452,10 @@ bool SBThread::GetDescription (SBStream &description) { if (m_opaque_sp) - m_opaque_sp->DumpUsingSettingsFormat (description.ref(), 0); + { + StreamString strm; + description.Printf("SBThread: tid = 0x%4.4x", m_opaque_sp->GetID()); + } else description.Printf ("No value"); |