PIMutex typedef std::mutex, patch PIMutexLocker, replace volatile by atomic

This commit is contained in:
2020-07-17 11:32:04 +03:00
parent 6f5c864e9f
commit 1a3096c48b
9 changed files with 12 additions and 182 deletions

View File

@@ -68,7 +68,7 @@ protected:
double interval_, deferred_delay;
bool deferred_, deferred_mode; // mode: true - date, false - delay
volatile bool running_;
std::atomic_bool running_;
PIDateTime deferred_datetime;
};