fix comment

This commit is contained in:
Howard Stearns 2015-10-22 13:14:38 -07:00
parent 0d514ad645
commit 624ed7c711

View file

@ -52,8 +52,8 @@ protected:
virtual void removeAvatar(const QUuid& sessionUUID);
AvatarHash _avatarHash;
// "Case-based safety": Most access to the _avatarHash is on the same thread. Write access is protected by a write lock.
// If you access from a different thread, it is your responsibility to write- or read-lock the _hashLock.
// "Case-based safety": Most access to the _avatarHash is on the same thread. Write access is protected by a write-lock.
// If you read from a different thread, you must read-lock the _hashLock. (Scripted write access is not supported).
QReadWriteLock _hashLock;
private: