Tbh I've no experience with ptys so I don't know if there is an equivalent <br><br>I do know that more than one process can share a single console.  So for example if you run a copy of lldb, you can have the ide and lldb share the same console.<br><br>Not sure if this is similar to what you're doing though <br><div class="gmail_quote"><div dir="ltr">On Thu, Aug 11, 2016 at 2:01 AM Pavel Labath <<a href="mailto:labath@google.com">labath@google.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">labath added a subscriber: zturner.<br>
labath added a comment.<br>
<br>
I think I have understood the situation a bit more now, so let me try to explain what is going on.<br>
<br>
In <a href="https://reviews.llvm.org/D23290#511683" rel="noreferrer" target="_blank">https://reviews.llvm.org/D23290#511683</a>, @clayborg wrote:<br>
<br>
> Is this something the user is typing in your IDE that you are forwarding to LLDB via pipes? Again, why are you using the command and not the API. There are API for everything you can do and no IDE should be doing code like:<br>
><br>
> void MyDebugger::ClearAllBreakpoints()<br>
>  {<br>
><br>
>   m_debugger.HandleCommand("breakpoint delete");<br>
><br>
> }<br>
><br>
> Can you explain your use case here? If this is something the user is typing, then user PTY instead of pipes and all will be well. I know many functions in the lldb-mi are incorrectly implemented and they actually create and send LLDB commands using text and we need to fix this, so hopefully you aren't copying that code as a basis???<br>
<br>
<br>
Yes, this is for commands that the user is typing by hand into the IDE, which has a tiny lldb console. All commands that are issued by IDE directly use the proper SB APIs. (The IDE is android studio BTW.)<br>
<br>
I had also considered using PTYs, but as far as I can tell there is no equivalent of that on windows. (@zturner, do you have any more insight into that? Is it possible to fake a terminal on windows à la POSIX pseudo terminals?).<br>
<br>
Greg, how does xcode achieve this? (I presume it has some form of an lldb console)<br>
<br>
<br>
<a href="https://reviews.llvm.org/D23290" rel="noreferrer" target="_blank">https://reviews.llvm.org/D23290</a><br>
<br>
<br>
<br>
</blockquote></div>