[Lldb-commits] [PATCH] D47797: [lldb-mi] Re-implement MI -exec-next command.
Alexander Polyakov via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Wed Jun 6 08:05:39 PDT 2018
polyakov.alex added inline comments.
================
Comment at: tools/lldb-mi/MICmdCmdExec.cpp:384
+ if (nThreadId != UINT64_MAX) {
+ lldb::SBThread sbThread = rSessionInfo.GetProcess().GetThreadByID(nThreadId);
+ if (sbThread.IsValid())
----------------
We can't test this branch until we have a way to get thread ID and then store it in some variable.
https://reviews.llvm.org/D47797
More information about the lldb-commits
mailing list