forked from organicmaps/organicmaps
Track recoder crash fix.
This commit is contained in:
parent
22b34c3adf
commit
d9d3060131
2 changed files with 4 additions and 2 deletions
|
@ -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)
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue