Use std::atomic for fRequestShutdown and fReopenDebugLog

This commit is contained in:
Pieter Wuille
2016-05-30 15:39:37 +02:00
parent 16cf85fa2c
commit a886dbf8e7
3 changed files with 4 additions and 7 deletions

View File

@@ -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()
{