[Lldb-commits] [PATCH] D100261: [lldb] [gdb-remote server] Support selecting process via Hg
Pavel Labath via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Wed Apr 14 11:39:38 PDT 2021
labath added inline comments.
================
Comment at: lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp:2102
+ if (pid == StringExtractorGDBRemote::AllProcesses)
+ return SendUnimplementedResponse("Selecting all processes not supported");
+ if (pid == LLDB_INVALID_PROCESS_ID)
----------------
Does it ever make sense to have more than one (process or thread) selected? If not, an error response may be more appropriate..
================
Comment at: lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.h:234
const llvm::ArrayRef<llvm::StringRef> client_features) override;
-
private:
----------------
revert
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D100261/new/
https://reviews.llvm.org/D100261
More information about the lldb-commits
mailing list