mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-16 13:01:19 +02:00
Use std::atomic for fRequestShutdown and fReopenDebugLog
This commit is contained in:
parent
16cf85fa2c
commit
a886dbf8e7
3 changed files with 4 additions and 7 deletions
|
|
@ -113,7 +113,7 @@ string strMiscWarning;
|
|||
bool fLogTimestamps = DEFAULT_LOGTIMESTAMPS;
|
||||
bool fLogTimeMicros = DEFAULT_LOGTIMEMICROS;
|
||||
bool fLogIPs = DEFAULT_LOGIPS;
|
||||
volatile sig_atomic_t fReopenDebugLog = false;
|
||||
std::atomic<bool> fReopenDebugLog(false);
|
||||
CTranslationInterface translationInterface;
|
||||
|
||||
/** Init OpenSSL library multithreading support */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue