================
@@ -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 _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
