Add Clang thread safety annotations for variables guarded by cs_warnings

This commit is contained in:
practicalswift 2018-04-29 22:29:53 +02:00
parent cf13ad23d4
commit 8499f15e67
1 changed files with 3 additions and 3 deletions

View File

@ -9,9 +9,9 @@
#include <warnings.h>
CCriticalSection cs_warnings;
std::string strMiscWarning;
bool fLargeWorkForkFound = false;
bool fLargeWorkInvalidChainFound = false;
std::string strMiscWarning GUARDED_BY(cs_warnings);
bool fLargeWorkForkFound GUARDED_BY(cs_warnings) = false;
bool fLargeWorkInvalidChainFound GUARDED_BY(cs_warnings) = false;
void SetMiscWarning(const std::string& strWarning)
{