================ @@ -1692,6 +1692,20 @@ class Target : public std::enable_shared_from_this<Target>, } }; +/// The private implementation backing SBLock. +struct APILock { + APILock(std::recursive_mutex &mutex) : lock(mutex) {} + std::lock_guard<std::recursive_mutex> lock; +}; + +/// The private implementation used by SBLock to hand out the target API mutex. +/// It has a TargetSP to ensure the lock cannot outlive the target. +struct TargetAPILock : public APILock { ---------------- JDevlieghere wrote:
I was indeed looking at (8). But even if it's available it still takes an existing reference/pointer, while what I need is to create a new object the (lock_guard) based on the pointer. Unless you mean changing the shared_ptr in the TargetAPILock to hold onto the mutex that way, which is indeed possible (but doesn't eliminate the class, as I had hoped). https://github.com/llvm/llvm-project/pull/131404 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits