[Lldb-commits] [lldb] [lldb] Expose the Target API lock through the SB API (PR #131404)

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Thu Mar 20 08:39:17 PDT 2025


================
@@ -0,0 +1,11 @@
+%extend lldb::SBLock {
+#ifdef SWIGPYTHON
+    %pythoncode %{
+        def __enter__(self):
+            return self
+
+        def __exit__(self, exc_type, exc_value, traceback):
+            self.Unlock()
----------------
JDevlieghere wrote:

Can you think of a way to make this work in Python, without giving up on the RAII property on the C++ side? I my opinion the `SBLock` is a lot more important in C++ than it is in Python (where the GIL means you don't truly have multithreading anyway, though I know in the future there might be a mode without the GIL). 

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


More information about the lldb-commits mailing list