diff options
| author | Chirag Davé <[email protected]> | 2016-05-04 21:40:28 -0700 |
|---|---|---|
| committer | Chirag Davé <[email protected]> | 2016-05-09 08:20:58 -0700 |
| commit | 326231611bda6808b579ab7286e471c36f62e98c (patch) | |
| tree | af2d8a5040e60555e3f2f18e36acc6f1b2d3c193 /src/util.cpp | |
| parent | Merge #7980: [qa] smartfees: Properly use ordered dict (diff) | |
| download | discoin-326231611bda6808b579ab7286e471c36f62e98c.tar.xz discoin-326231611bda6808b579ab7286e471c36f62e98c.zip | |
fReopenDebugLog and fRequestShutdown should be type sig_atomic_t
This allows access as an atomic variable in the presence
of async interrupts.
See issue #7433 for more details
fixes: #7433
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 00b75fbdb..579be338e 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 bool fReopenDebugLog = false; +volatile sig_atomic_t fReopenDebugLog = false; CTranslationInterface translationInterface; /** Init OpenSSL library multithreading support */ |