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: 3daed01eebbf08939083ffe023a927011d474cc9 (plain)
1
2
3
4
5
6
7
8
#include "base/threaded_container.hpp"

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