[Lldb-commits] [lldb] [lldb][lldb-dap] Added support for "WriteMemory" request. (PR #131820)
Santhosh Kumar Ellendula via lldb-commits
lldb-commits at lists.llvm.org
Wed Mar 19 09:56:32 PDT 2025
================
@@ -463,6 +463,8 @@ void InitializeRequestHandler::operator()(
body.try_emplace("supportsDataBreakpoints", true);
// The debug adapter supports the `readMemory` request.
body.try_emplace("supportsReadMemoryRequest", true);
+ // The debug adapter supports the 'writeMemory' request.
+ body.try_emplace("supportsWriteMemoryRequest", true);
----------------
santhoshe447 wrote:
Hi @vogelsgesang ,
Thanks a lot for letting me know, but those latest changes are not showing to me.
I will check this, if it required, I will push another patch.
https://github.com/llvm/llvm-project/pull/131820
More information about the lldb-commits
mailing list