aboutsummaryrefslogtreecommitdiff
path: root/src/util.cpp
diff options
context:
space:
mode:
authorPieter Wuille <[email protected]>2016-06-01 20:23:11 +0200
committerPieter Wuille <[email protected]>2016-06-01 20:38:41 +0200
commit2e0a99037dcc35bc63ba0d54371bc678af737c8e (patch)
tree4cb42cd44838ac03072053f4ce8197f9d85431ef /src/util.cpp
parentMerge #8112: Include signal.h for sig_atomic_t in WIN32 (diff)
parentUse std::atomic for fRequestShutdown and fReopenDebugLog (diff)
downloaddiscoin-2e0a99037dcc35bc63ba0d54371bc678af737c8e.tar.xz
discoin-2e0a99037dcc35bc63ba0d54371bc678af737c8e.zip
Merge #8123: Use std::atomic for fRequestShutdown and fReopenDebugLog
a886dbf Use std::atomic for fRequestShutdown and fReopenDebugLog (Pieter Wuille) 16cf85f Revert "Include signal.h for sig_atomic_t in WIN32" (Pieter Wuille)
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 80f219301..9a9209c62 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 */