================
@@ -91,8 +94,13 @@ WriteMemoryRequestHandler::Run(
if (bytes_written == 0) {
return llvm::make_error<DAPError>(write_error.GetCString());
}
- protocol::WriteMemoryResponseBody response;
+ WriteMemoryResponseBody response;
response.bytesWritten = bytes_written;
+
+ // Also send invalidated event to signal client that some things
+ // (e.g. variables) can be changed.
+ SendInvalidatedEvent(dap, {InvalidatedEventBody::eAreaAll});
----------------
DrSergei wrote:
I think we can change return address on stack using `writeMemory` request
https://github.com/llvm/llvm-project/pull/157530
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits