mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-09 07:37:28 +02:00
fix deadlock on startup
This commit is contained in:
parent
32d3014d0d
commit
652ac17dac
1 changed files with 1 additions and 1 deletions
|
@ -89,7 +89,7 @@ private:
|
||||||
QHash<size_t, QSharedPointer<Dependency>> _instanceHash;
|
QHash<size_t, QSharedPointer<Dependency>> _instanceHash;
|
||||||
QHash<size_t, size_t> _inheritanceHash;
|
QHash<size_t, size_t> _inheritanceHash;
|
||||||
|
|
||||||
mutable QMutex _instanceHashMutex;
|
mutable QMutex _instanceHashMutex { QMutex::Recursive };
|
||||||
mutable QMutex _inheritanceHashMutex;
|
mutable QMutex _inheritanceHashMutex;
|
||||||
|
|
||||||
bool _exiting { false };
|
bool _exiting { false };
|
||||||
|
|
Loading…
Reference in a new issue