Welcome to mirror list, hosted at ThFree Co, Russian Federation.

threaded_container.cpp « base - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c3e44a94e759430311ae24eb8d1b245dd0b820b3 (plain)
1
2
3
4
5
6
7
8
#include "base/threaded_container.hpp"

void ThreadedContainer::Cancel()
{
  threads::ConditionGuard g(m_Cond);
  my::Cancellable::Cancel();
  m_Cond.Signal(true);
}