[Lldb-commits] [PATCH] D128156: [lldb] [llgs] Include PID in QC response in multiprocess mode

2022-06-20 Thread Michał Górny via Phabricator via lldb-commits
mgorny created this revision. mgorny added reviewers: labath, emaste, krytarowski, jingham. Herald added a subscriber: arichardson. Herald added a project: All. mgorny requested review of this revision. Sponsored by: The FreeBSD Foundation https://reviews.llvm.org/D128156 Files: lldb/source/P

[Lldb-commits] [PATCH] D128156: [lldb] [llgs] Include PID in QC response in multiprocess mode

2022-06-20 Thread Pavel Labath via Phabricator via lldb-commits
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 & Nat

[Lldb-commits] [PATCH] D128156: [lldb] [llgs] Include PID in QC response in multiprocess mode

2022-06-20 Thread Michał Górny via Phabricator via lldb-commits
mgorny added inline comments. 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

[Lldb-commits] [PATCH] D128156: [lldb] [llgs] Include PID in QC response in multiprocess mode

2022-06-20 Thread Michał Górny via Phabricator via lldb-commits
mgorny updated this revision to Diff 438417. mgorny added a comment. Update more tests. I have no clue how I missed these when testing. CHANGES SINCE LAST ACTION https://reviews.llvm.org/D128156/new/ https://reviews.llvm.org/D128156 Files: lldb/source/Plugins/Process/gdb-remote/GDBRemoteCo

[Lldb-commits] [PATCH] D128156: [lldb] [llgs] Include PID in QC response in multiprocess mode

2022-06-24 Thread Michał Górny via Phabricator via lldb-commits
This revision was landed with ongoing or failed builds. This revision was automatically updated to reflect the committed changes. Closed by commit rG630da0e309ef: [lldb] [llgs] Include PID in QC response in multiprocess mode (authored by mgorny). Herald added a project: LLDB. Repository: rG LLV