diff options
author | Jason Molenda <jmolenda@apple.com> | 2017-11-02 03:17:07 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 2017-11-02 03:17:07 +0000 |
commit | 23502721870be84917fb97e4c9b8ae0755bd220e (patch) | |
tree | 7d7862578e7402c4c718f432c630f4e548e94e22 /lldb/source/API/SBDebugger.cpp | |
parent | edc2def4a65764991ffb50e9c9af1c740ced534c (diff) | |
download | bcm5719-llvm-23502721870be84917fb97e4c9b8ae0755bd220e.tar.gz bcm5719-llvm-23502721870be84917fb97e4c9b8ae0755bd220e.zip |
Revert r317182 for https://reviews.llvm.org/D39128
we're still failing on android. I'll ask Larry to
ask Pavel for any tips he might be able to give.
llvm-svn: 317183
Diffstat (limited to 'lldb/source/API/SBDebugger.cpp')
-rw-r--r-- | lldb/source/API/SBDebugger.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/lldb/source/API/SBDebugger.cpp b/lldb/source/API/SBDebugger.cpp index af883acf1ad..d3294dab582 100644 --- a/lldb/source/API/SBDebugger.cpp +++ b/lldb/source/API/SBDebugger.cpp @@ -270,18 +270,6 @@ void SBDebugger::SetInputFileHandle(FILE *fh, bool transfer_ownership) { m_opaque_sp->SetInputFileHandle(fh, transfer_ownership); } -void SBDebugger::FlushDebuggerOutputHandles() { - Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_API)); - - if (log) - log->Printf( - "SBDebugger(%p)::FlushDebuggerOutputHandles ()", - static_cast<void *>(m_opaque_sp.get())); - - if (m_opaque_sp) - m_opaque_sp->FlushDebuggerOutputHandles(); -} - void SBDebugger::SetOutputFileHandle(FILE *fh, bool transfer_ownership) { Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_API)); |