SerializedAsyncContin: LockSet should take Qutex, not SpinLock

Apparently this error was here the whole time and it flew under
the radar.
This commit is contained in:
2025-09-30 02:12:04 -04:00
parent 97d93c670e
commit 46686db07e
+1 -1
View File
@@ -24,7 +24,7 @@ public:
SerializedAsynchronousContinuation(
const std::shared_ptr<ComponentThread> &caller,
Callback<OriginalCbFnT> originalCbFn,
std::vector<std::reference_wrapper<SpinLock>> requiredLocks = {})
std::vector<std::reference_wrapper<Qutex>> requiredLocks = {})
: PostedAsynchronousContinuation<OriginalCbFnT>(caller, originalCbFn),
requiredLocks(*this, std::move(requiredLocks))
{}