diff options
| author | Pieter Wuille <[email protected]> | 2016-06-01 20:23:11 +0200 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2016-06-01 20:38:41 +0200 |
| commit | 2e0a99037dcc35bc63ba0d54371bc678af737c8e (patch) | |
| tree | 4cb42cd44838ac03072053f4ce8197f9d85431ef /src/util.cpp | |
| parent | Merge #8112: Include signal.h for sig_atomic_t in WIN32 (diff) | |
| parent | Use std::atomic for fRequestShutdown and fReopenDebugLog (diff) | |
| download | discoin-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.cpp | 2 |
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 */ |