[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


================
@@ -203,11 +203,17 @@ ProcessWindows::DoAttachToProcessWithID(lldb::pid_t pid,
   return error;
 }
 
-Status ProcessWindows::DoResume() {
+Status ProcessWindows::DoResume(RunDirection direction) {
   Log *log = GetLog(WindowsLog::Process);
   llvm::sys::ScopedLock lock(m_mutex);
   Status error;
 
+  if (direction == RunDirection::eRunReverse) {
----------------
clayborg wrote:

We should use `DoResumeReverse()` in Process.h and this change won't need to happen.

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


More information about the lldb-commits mailing list