diff options
author | Jim Ingham <jingham@apple.com> | 2011-06-22 18:23:52 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2011-06-22 18:23:52 +0000 |
commit | ad63637f3f742ca27be585dc1484a2009442cd3d (patch) | |
tree | 147e881531cddea42509908f19b7149be0d7d29f | |
parent | 1501f16cfeb3908c3adaa28fcc0710937605c6ef (diff) | |
download | bcm5719-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.cpp | 2 |
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 |