Attach/detach DeferredTask on Android correctly.

This commit is contained in:
Dmitry Yunitsky 2016-03-09 19:30:18 +03:00 committed by Sergey Yershov
parent ea139eedc8
commit 54e635d8b2
3 changed files with 5 additions and 4 deletions

View file

@ -4,7 +4,7 @@ namespace my
{
DeferredTask::DeferredTask(TDuration const & duration) : m_duration(duration)
{
m_thread = thread([this]
m_thread = threads::SimpleThread([this]
{
unique_lock<mutex> l(m_mutex);
while (!m_terminate)

View file

@ -1,17 +1,18 @@
#pragma once
#include "base/thread.hpp"
#include "std/chrono.hpp"
#include "std/condition_variable.hpp"
#include "std/function.hpp"
#include "std/mutex.hpp"
#include "std/thread.hpp"
namespace my
{
class DeferredTask
{
using TDuration = duration<double>;
thread m_thread;
threads::SimpleThread m_thread;
mutex m_mutex;
condition_variable m_cv;
function<void()> m_fn;

View file

@ -121,4 +121,4 @@ void SimpleThread::ThreadFunc(function<void()> && fn)
AndroidThreadDetachFromJVM();
#endif // defined(OMIM_OS_ANDROID)
}
}
} // namespace threads