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


================
@@ -874,10 +874,10 @@ class Process : public std::enable_shared_from_this<Process>,
   /// \see Thread:Resume()
   /// \see Thread:Step()
   /// \see Thread:Suspend()
-  Status Resume();
+  Status Resume(lldb::RunDirection direction = lldb::eRunForward);
----------------
clayborg wrote:

internal APIs, anything not in the `lldb` namespace _can_ be changed. So this is ok. Though I personally would like to see a:
```
Status ReverseResume();
```
I am open to feedback from other here as my mind can easily be changed.

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


More information about the lldb-commits mailing list