[Lldb-commits] [lldb] [lldb] Implement basic support for reverse-continue (PR #99736)
Greg Clayton via lldb-commits
lldb-commits at lists.llvm.org
Tue Jul 23 09:47:11 PDT 2024
================
@@ -111,7 +111,7 @@ class ProcessGDBRemote : public Process,
// Process Control
Status WillResume() override;
- Status DoResume() override;
+ Status DoResume(lldb::RunDirection direction) override;
----------------
clayborg wrote:
We should use `DoResumeReverse()` in Process.h and this change will add a new interface definition.
https://github.com/llvm/llvm-project/pull/99736
More information about the lldb-commits
mailing list