[Lldb-commits] [lldb] [lldb][lldb-dap] Added support for "WriteMemory" request. (PR #131820)

Adrian Vogelsgesang via lldb-commits lldb-commits at lists.llvm.org
Wed Mar 19 05:58:35 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);
----------------
vogelsgesang wrote:

with the recent refactoring from https://github.com/llvm/llvm-project/pull/131943, this capability should be declared in the `WriteMemoryRequestHandler`

https://github.com/llvm/llvm-project/pull/131820


More information about the lldb-commits mailing list