clayborg added a comment.

So I did a bunch of original IOHandler. And there are many complex cases for 
sure. One thing to be aware of is that if you won't use editline() and we call 
fgets() in the default implementation, there is no way to cancel this IIRC. So 
it might be worth trying this without editline support to make sure things 
don't deadlock. If the test suite is happy, then this looks worth trying, 
though with all the complexities I don't think we can guarantee this doesn't 
cause issues in some unexpected way. The main things that worry me are:

- REPL issues since the REPL and (lldb) prompt switch between themselves in a 
tricky way where they swap IOHandlers
- running from python script directly when no IOHandlers are pushed because no 
command interpreter is being run and all the fallout from the cases 
(HandleCommand that results in a python breakpoint callback etc)
- the process IO handler that does STDIO for a process
- when no editline, we use fgets() that can't be canceled


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D72748/new/

https://reviews.llvm.org/D72748



_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to