Make bool atomic to avoid data race

This commit is contained in:
Sergey Yershov 2016-12-14 18:27:14 +03:00
parent ee087914bb
commit ae84aae5fb
2 changed files with 3 additions and 2 deletions

View file

@ -25,7 +25,8 @@ milliseconds const Reporter::kPushDelayMs = milliseconds(20000);
Reporter::Reporter(unique_ptr<platform::Socket> socket, string const & host, uint16_t port,
milliseconds pushDelay)
: m_realtimeSender(move(socket), host, port, false)
: m_allowSendingPoints(true)
, m_realtimeSender(move(socket), host, port, false)
, m_pushDelay(pushDelay)
, m_points(kRealTimeBufferSize)
, m_thread([this] { Run(); })

View file

@ -45,7 +45,7 @@ private:
void Run();
bool SendPoints();
bool m_allowSendingPoints = true;
atomic<bool> m_allowSendingPoints;
Connection m_realtimeSender;
milliseconds m_pushDelay;
bool m_wasConnected = false;