[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:44:00 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:

What I can make work is this:
```
lock = target.AcquireLock();
[...]
lock.Unlock()
with lock:
   # we are correctly locked here
with lock:
   # we are correctly locked here
```

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


More information about the lldb-commits mailing list