forked from OSchip/llvm-project
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
This commit is contained in:
parent
1501f16cfe
commit
ad63637f3f
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue