[Lldb-commits] [PATCH] D49632: [lldb-mi] Re-implement MI HandleProcessEventStateSuspended.
Alexander Polyakov via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Mon Jul 30 11:49:12 PDT 2018
apolyakov added a comment.
In https://reviews.llvm.org/D49632#1180465, @clayborg wrote:
> I still don't get why we are printing process stopped information to STDOUT. MI is a machine interface for a IDE. The IDE should be showing the process state in the GUI.
AFAIK, all lldb-mi commands print their final result records to stdout. All lldb-mi commands are inherited from `CMICmdInvoker` which has `CmdExecuteFinished(...)` method that is invoked when a command is finished, this method then call `CmdToStdout(...)` method which prints command's result to stdout. So, I guess, it's ok, isn't it?
https://reviews.llvm.org/D49632
More information about the lldb-commits
mailing list