diff options
author | Chirag Davé <c@chirag.io> | 2016-05-04 21:40:28 -0700 |
---|---|---|
committer | Chirag Davé <c@chirag.io> | 2016-05-09 08:20:58 -0700 |
commit | 326231611bda6808b579ab7286e471c36f62e98c (patch) | |
tree | af2d8a5040e60555e3f2f18e36acc6f1b2d3c193 /src/util.h | |
parent | 88b77c7da0a672c89e24df37ea6e9085b4e2a05c (diff) |
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.h')
-rw-r--r-- | src/util.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/util.h b/src/util.h index ac099f1184..33db0f9e4a 100644 --- a/src/util.h +++ b/src/util.h @@ -28,6 +28,10 @@ #include <boost/signals2/signal.hpp> #include <boost/thread/exceptions.hpp> +#ifndef WIN32 +#include <signal.h> +#endif + static const bool DEFAULT_LOGTIMEMICROS = false; static const bool DEFAULT_LOGIPS = false; static const bool DEFAULT_LOGTIMESTAMPS = true; @@ -50,7 +54,7 @@ extern std::string strMiscWarning; extern bool fLogTimestamps; extern bool fLogTimeMicros; extern bool fLogIPs; -extern volatile bool fReopenDebugLog; +extern volatile sig_atomic_t fReopenDebugLog; extern CTranslationInterface translationInterface; extern const char * const BITCOIN_CONF_FILENAME; |