Skip to content

Commit 19a3a9e

Browse files
author
MarcoFalke
committed
Merge #13127: wallet: Add Clang thread safety annotations for variables guarded by cs_db
56921f9 wallet: Add Clang thread safety annotations for variables guarded by cs_db (practicalswift) Pull request description: Add Clang thread safety annotations for variables guarded by `cs_db`. Tree-SHA512: d59723598e918143f36408b4f49d31138b5d8968ba191472f6a207a63af147627f21e48fd6cc1606dd901d8a58183271e65ea4346a380db3c09e404764a28063
2 parents cb088b1 + 56921f9 commit 19a3a9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/wallet/db.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ void CheckUniqueFileid(const BerkeleyEnvironment& env, const std::string& filena
5353
}
5454

5555
CCriticalSection cs_db;
56-
std::map<std::string, BerkeleyEnvironment> g_dbenvs; //!< Map from directory name to open db environment.
56+
std::map<std::string, BerkeleyEnvironment> g_dbenvs GUARDED_BY(cs_db); //!< Map from directory name to open db environment.
5757
} // namespace
5858

5959
BerkeleyEnvironment* GetWalletEnv(const fs::path& wallet_path, std::string& database_filename)

0 commit comments

Comments
 (0)