X-Git-Url: https://git.saurik.com/apple/security.git/blobdiff_plain/914fc88e61be54aed6b18205ff2775b48793a3b6..866f8763175ff60e4fa455b92b5eb660a12fe6c7:/OSX/libsecurity_keychain/lib/Keychains.h diff --git a/OSX/libsecurity_keychain/lib/Keychains.h b/OSX/libsecurity_keychain/lib/Keychains.h index 7667b7ae..507b270c 100644 --- a/OSX/libsecurity_keychain/lib/Keychains.h +++ b/OSX/libsecurity_keychain/lib/Keychains.h @@ -138,7 +138,6 @@ public: Mutex* getKeychainMutex(); Mutex* getMutexForObject() const; - ReadWriteLock* getKeychainReadWriteLock(); void aboutToDestruct(); bool operator ==(const KeychainImpl &) const; @@ -323,11 +322,6 @@ private: // creation/returning needs a mutex. You should only hold this if you're // copying or changing the mDb object. Mutex mDbMutex; - - // Used to protect mDb across calls. - // Grab a read lock if you expect to read from this keychain in the future. - // The write lock is taken if we're replacing the database wholesale with something new. - ReadWriteLock mRWLock; };