Use std::atomic for fRequestShutdown and fReopenDebugLog

This commit is contained in:
Pieter Wuille
2016-05-30 15:39:37 +02:00
parent 16cf85fa2c
commit a886dbf8e7
3 changed files with 4 additions and 7 deletions

View File

@@ -113,7 +113,7 @@ string strMiscWarning;
bool fLogTimestamps = DEFAULT_LOGTIMESTAMPS;
bool fLogTimeMicros = DEFAULT_LOGTIMEMICROS;
bool fLogIPs = DEFAULT_LOGIPS;
volatile sig_atomic_t fReopenDebugLog = false;
std::atomic<bool> fReopenDebugLog(false);
CTranslationInterface translationInterface;
/** Init OpenSSL library multithreading support */