[Lldb-commits] [PATCH] D98822: [lldb] follow-fork/vfork support [WIP]
Michał Górny via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Wed Mar 17 15:21:57 PDT 2021
mgorny added inline comments.
================
Comment at: lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp:2026
+llvm::Error NativeProcessLinux::SetEnabledExtensions(uint32_t flags) {
+ return llvm::createStringError(llvm::inconvertibleErrorCode(),
+ "Not implemented");
----------------
This is not intended to send errors like this, I've just added it to test logging.
================
Comment at: lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp:187
&GDBRemoteCommunicationServerLLGS::Handle_QPassSignals);
+ RegisterMemberFunctionHandler(
+ StringExtractorGDBRemote::eServerPacketType_qSupported,
----------------
@labath, I'm not convinced this is the best way of doing it. Do you have any suggestions?
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D98822/new/
https://reviews.llvm.org/D98822
More information about the lldb-commits
mailing list