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/init.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/init.cpp')
| -rw-r--r-- | src/init.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp index 98c089412..9a2250185 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -123,7 +123,7 @@ static const char* FEE_ESTIMATES_FILENAME="fee_estimates.dat"; // shutdown thing. // -volatile sig_atomic_t fRequestShutdown = false; +std::atomic<bool> fRequestShutdown(false); void StartShutdown() { |