[Lldb-commits] [lldb] [lldb] Implement basic support for reverse-continue (PR #99736)
via lldb-commits
lldb-commits at lists.llvm.org
Mon Sep 23 14:27:16 PDT 2024
================
@@ -510,8 +510,9 @@ def start(self):
self._thread.start()
def stop(self):
- self._thread.join()
- self._thread = None
+ if self._thread is not None:
----------------
jimingham wrote:
It's not obvious when you'd get a stop with no thread. Why did you need this?
https://github.com/llvm/llvm-project/pull/99736
More information about the lldb-commits
mailing list