Track recoder crash fix.

This commit is contained in:
Vladimir Byko-Ianko 2017-03-13 17:40:08 +03:00 committed by Sergey Yershov
parent 22b34c3adf
commit d9d3060131
2 changed files with 4 additions and 2 deletions

View file

@ -127,7 +127,7 @@ void GpsTrack::ScheduleTask()
if (m_thread.get_id() == thread::id())
{
m_thread = thread([this]()
m_thread = threads::SimpleThread([this]()
{
unique_lock<mutex> ul(m_threadGuard);
while (true)

View file

@ -4,6 +4,8 @@
#include "map/gps_track_filter.hpp"
#include "map/gps_track_storage.hpp"
#include "base/thread.hpp"
#include "std/condition_variable.hpp"
#include "std/mutex.hpp"
#include "std/thread.hpp"
@ -87,7 +89,7 @@ private:
unique_ptr<IGpsTrackFilter> m_filter; // used in the worker thread
mutex m_threadGuard;
thread m_thread;
threads::SimpleThread m_thread;
bool m_threadExit; // need exit thread
bool m_threadWakeup; // need wakeup thread
condition_variable m_cv;