[Lldb-commits] [PATCH] D128156: [lldb] [llgs] Include PID in QC response in multiprocess mode
Pavel Labath via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Mon Jun 20 00:02:36 PDT 2022
labath accepted this revision.
labath added inline comments.
This revision is now accepted and ready to land.
================
Comment at: lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp:1415-1419
+ response.PutCString("QC");
+ if (bool(m_extensions_supported & NativeProcessProtocol::Extension::multiprocess))
+ response.Format("p{0:x-}.", m_current_process->GetID());
+ response.Format("{0:x-}", thread->GetID());
----------------
How many of these are we going to have? Should we add a helper fn?
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D128156/new/
https://reviews.llvm.org/D128156
More information about the lldb-commits
mailing list