forked from organicmaps/organicmaps
Make bool atomic to avoid data race
This commit is contained in:
parent
ee087914bb
commit
ae84aae5fb
2 changed files with 3 additions and 2 deletions
|
@ -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(); })
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue