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
This commit is contained in:
Chirag Davé
2016-05-04 21:40:28 -07:00
committed by Simon
parent 90c116ac54
commit 7a4e0e0932
3 changed files with 14 additions and 5 deletions

View File

@@ -111,7 +111,7 @@ CClientUIInterface uiInterface; // Declared but not defined in ui_interface.h
// shutdown thing.
//
volatile bool fRequestShutdown = false;
volatile sig_atomic_t fRequestShutdown = false;
void StartShutdown()
{