clayborg added inline comments.
================
Comment at: source/Target/Process.cpp:4692-4693
+ // the IOHandler for Editline).
+ bool cancel_top_handler = m_mod_id.IsRunningUtilityFunction();
+ GetTarget().GetDebugger().PushIOHandler(io_handler_sp, cancel_top_handler);
return true;
----------------
Another possible fix is to avoid pushing the IOHandler all together? Something
like:
```
if (!m_mod_id.IsRunningUtilityFunction())
GetTarget().GetDebugger().PushIOHandler(io_handler_sp);
```
This would avoid an needed changes to the IOHandler stuff?
https://reviews.llvm.org/D50912
_______________________________________________
lldb-commits mailing list
[email protected]
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits