[Lldb-commits] [lldb] [lldb] Implement basic support for reverse-continue (PR #112079)
Robert O'Callahan via lldb-commits
lldb-commits at lists.llvm.org
Sat Dec 14 03:23:59 PST 2024
================
@@ -3239,6 +3241,14 @@ Status Process::ConnectRemote(llvm::StringRef remote_url) {
return error;
}
+void Process::SetRunDirection(RunDirection direction) {
+ if (m_base_direction == direction) {
+ return;
+ }
+ m_thread_list.DiscardThreadPlans();
----------------
rocallahan wrote:
Renamed this to `SetBaseDirection()` and added this to the comment on that method in `Process.h`.
https://github.com/llvm/llvm-project/pull/112079
More information about the lldb-commits
mailing list