[Lldb-commits] [lldb] [lldb] Implement basic support for reverse-continue (PR #99736)

Greg Clayton via lldb-commits lldb-commits at lists.llvm.org
Thu Jul 25 15:33:58 PDT 2024


================
@@ -158,7 +158,7 @@ class LLDB_API SBProcess {
 
   lldb::SBError Destroy();
 
-  lldb::SBError Continue();
+  lldb::SBError Continue(RunDirection direction = RunDirection::eRunForward);
----------------
clayborg wrote:

@jimingham: do you want all process control function to remain the same and then add a direction control? Something like:
```
lldb::SBError SetRunDirection(RunDirection direction);
```
Jim is this what you are thinking?


And my API comments stand though, we can't change a pre-existing API. We can add new overloads though

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


More information about the lldb-commits mailing list