summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJim Ingham <jingham@apple.com>2011-06-22 18:23:52 +0000
committerJim Ingham <jingham@apple.com>2011-06-22 18:23:52 +0000
commitad63637f3f742ca27be585dc1484a2009442cd3d (patch)
tree147e881531cddea42509908f19b7149be0d7d29f
parent1501f16cfeb3908c3adaa28fcc0710937605c6ef (diff)
downloadbcm5719-llvm-ad63637f3f742ca27be585dc1484a2009442cd3d.tar.gz
bcm5719-llvm-ad63637f3f742ca27be585dc1484a2009442cd3d.zip
Reverting switch to the AsyncOutputStream for the Thread Trace Logger. This change caused the logger to crash. Presumably we're printing at a time the debugger isn't ready to print.
llvm-svn: 133629
-rw-r--r--lldb/source/Target/ThreadPlanTracer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Target/ThreadPlanTracer.cpp b/lldb/source/Target/ThreadPlanTracer.cpp
index 5a5c8b258d0..bf023539002 100644
--- a/lldb/source/Target/ThreadPlanTracer.cpp
+++ b/lldb/source/Target/ThreadPlanTracer.cpp
@@ -55,7 +55,7 @@ ThreadPlanTracer::GetLogStream ()
if (m_stream_sp.get())
return m_stream_sp.get();
else
- return m_thread.GetProcess().GetTarget().GetDebugger().GetAsyncOutputStream().get();
+ return &m_thread.GetProcess().GetTarget().GetDebugger().GetOutputStream();
}
void
OpenPOWER on IntegriCloud