diff options
| author | Wladimir J. van der Laan <[email protected]> | 2016-05-12 11:45:49 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2016-05-12 11:46:10 +0200 |
| commit | 2efe38b8323c77d259bbf87280c5e5e634f3f475 (patch) | |
| tree | ead7dba1d3d319d3ffc997d8828018cf42f1a6b3 /src/util.h | |
| parent | Merge #8041: [qa] Fix bip9-softforks blockstore issue (diff) | |
| parent | fReopenDebugLog and fRequestShutdown should be type sig_atomic_t (diff) | |
| download | discoin-2efe38b8323c77d259bbf87280c5e5e634f3f475.tar.xz discoin-2efe38b8323c77d259bbf87280c5e5e634f3f475.zip | |
Merge #8004: signal handling: fReopenDebugLog and fRequestShutdown should be type sig_atomic_t
3262316 fReopenDebugLog and fRequestShutdown should be type sig_atomic_t (Chirag Davé)
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 45e81ab67..88a00d3ca 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; |