aboutsummaryrefslogtreecommitdiff
path: root/src/util.h
diff options
context:
space:
mode:
authorPieter Wuille <pieter.wuille@gmail.com>2016-05-30 15:39:37 +0200
committerPieter Wuille <pieter.wuille@gmail.com>2016-06-01 19:18:25 +0200
commita886dbf8e7b6b007153a53e8d8d1fd63b7fc9ee2 (patch)
tree4cb42cd44838ac03072053f4ce8197f9d85431ef /src/util.h
parent16cf85fa2c2da7ff73b2c72afcbb5de26a2bede2 (diff)
downloadbitcoin-a886dbf8e7b6b007153a53e8d8d1fd63b7fc9ee2.tar.xz
Use std::atomic for fRequestShutdown and fReopenDebugLog
Diffstat (limited to 'src/util.h')
-rw-r--r--src/util.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/util.h b/src/util.h
index 88a00d3ca1..ac4b947785 100644
--- a/src/util.h
+++ b/src/util.h
@@ -18,6 +18,7 @@
#include "tinyformat.h"
#include "utiltime.h"
+#include <atomic>
#include <exception>
#include <map>
#include <stdint.h>
@@ -28,10 +29,6 @@
#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;
@@ -54,7 +51,7 @@ extern std::string strMiscWarning;
extern bool fLogTimestamps;
extern bool fLogTimeMicros;
extern bool fLogIPs;
-extern volatile sig_atomic_t fReopenDebugLog;
+extern std::atomic<bool> fReopenDebugLog;
extern CTranslationInterface translationInterface;
extern const char * const BITCOIN_CONF_FILENAME;