diff options
Diffstat (limited to 'lldb/source/API/SBDebugger.cpp')
-rw-r--r-- | lldb/source/API/SBDebugger.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lldb/source/API/SBDebugger.cpp b/lldb/source/API/SBDebugger.cpp index d3294dab582..af883acf1ad 100644 --- a/lldb/source/API/SBDebugger.cpp +++ b/lldb/source/API/SBDebugger.cpp @@ -270,6 +270,18 @@ 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)); |