diff options
| author | Pieter Wuille <[email protected]> | 2016-05-30 15:39:37 +0200 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2016-06-01 19:18:25 +0200 |
| commit | a886dbf8e7b6b007153a53e8d8d1fd63b7fc9ee2 (patch) | |
| tree | 4cb42cd44838ac03072053f4ce8197f9d85431ef /src/util.cpp | |
| parent | Revert "Include signal.h for sig_atomic_t in WIN32" (diff) | |
| download | discoin-a886dbf8e7b6b007153a53e8d8d1fd63b7fc9ee2.tar.xz discoin-a886dbf8e7b6b007153a53e8d8d1fd63b7fc9ee2.zip | |
Use std::atomic for fRequestShutdown and fReopenDebugLog
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 */ |