wallet: Add Clang thread safety annotations for variables guarded by cs_db

This commit is contained in:
practicalswift 2018-04-30 11:42:20 +02:00
parent 219970524d
commit 56921f9369
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ void CheckUniqueFileid(const BerkeleyEnvironment& env, const std::string& filena
}
CCriticalSection cs_db;
std::map<std::string, BerkeleyEnvironment> g_dbenvs; //!< Map from directory name to open db environment.
std::map<std::string, BerkeleyEnvironment> g_dbenvs GUARDED_BY(cs_db); //!< Map from directory name to open db environment.
} // namespace
BerkeleyEnvironment* GetWalletEnv(const fs::path& wallet_path, std::string& database_filename)