[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:13 PDT 2024


================
@@ -1129,10 +1129,15 @@ class Process : public std::enable_shared_from_this<Process>,
   /// \see Thread:Resume()
   /// \see Thread:Step()
   /// \see Thread:Suspend()
-  virtual Status DoResume() {
+  virtual Status DoResume(lldb::RunDirection direction) {
----------------
clayborg wrote:

I would rather have a new `DoResumeReverse()` instead of changing this virtual API. Many modified files in this patch are a result of the process plugins having to add support for not supporting reverse resumes.

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


More information about the lldb-commits mailing list