diff options
| author | MarcoFalke <[email protected]> | 2018-05-14 09:56:44 -0400 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2018-05-14 09:56:47 -0400 |
| commit | 19a3a9e8fba7ad6743ee1a18ee77ab639120d50e (patch) | |
| tree | 7ac65f1e86fd4566174aaa7e6f501c1e508b4b61 /src | |
| parent | Merge #13005: Make --enable-debug to pick better options (diff) | |
| parent | wallet: Add Clang thread safety annotations for variables guarded by cs_db (diff) | |
| download | discoin-19a3a9e8fba7ad6743ee1a18ee77ab639120d50e.tar.xz discoin-19a3a9e8fba7ad6743ee1a18ee77ab639120d50e.zip | |
Merge #13127: wallet: Add Clang thread safety annotations for variables guarded by cs_db
56921f9369 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
Diffstat (limited to 'src')
| -rw-r--r-- | src/wallet/db.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/db.cpp b/src/wallet/db.cpp index 7e75ee7ad..410dd5009 100644 --- a/src/wallet/db.cpp +++ b/src/wallet/db.cpp @@ -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) |