aboutsummaryrefslogtreecommitdiff
path: root/src/util.cpp
diff options
context:
space:
mode:
authorPieter Wuille <pieter.wuille@gmail.com>2016-05-30 15:39:37 +0200
committerPieter Wuille <pieter.wuille@gmail.com>2016-06-01 19:18:25 +0200
commita886dbf8e7b6b007153a53e8d8d1fd63b7fc9ee2 (patch)
tree4cb42cd44838ac03072053f4ce8197f9d85431ef /src/util.cpp
parent16cf85fa2c2da7ff73b2c72afcbb5de26a2bede2 (diff)
downloadbitcoin-a886dbf8e7b6b007153a53e8d8d1fd63b7fc9ee2.tar.xz
Use std::atomic for fRequestShutdown and fReopenDebugLog
Diffstat (limited to 'src/util.cpp')
-rw-r--r--src/util.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.cpp b/src/util.cpp
index 80f2193016..9a9209c621 100644
--- a/src/util.cpp
+++ b/src/util.cpp
@@ -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 */