From e53b0be7e2274d84a04b32d373e0fd06ebcf04a2 Mon Sep 17 00:00:00 2001 From: Hayodea Hekol Date: Tue, 30 Sep 2025 03:51:36 -0400 Subject: [PATCH] Lockset: make locks vec public so LockerAndInvoker can access --- include/lockSet.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/include/lockSet.h b/include/lockSet.h index 8ffcae6..6af471d 100644 --- a/include/lockSet.h +++ b/include/lockSet.h @@ -128,10 +128,12 @@ public: ": Qutex not found in this LockSet"); } +public: + std::vector locks; + private: SerializedAsynchronousContinuation &parentContinuation; - std::vector locks; - bool allLocksAcquired, registeredInQutexQueues; + bool allLocksAcquired, registeredInQutexQueues; }; } // namespace smo