From 49bebaa308f4ccf5d0f4220b16ad01cf58a3d8b8 Mon Sep 17 00:00:00 2001 From: ExMix Date: Mon, 28 Oct 2013 12:30:28 +0300 Subject: [PATCH] [drape] rename strange thread pool to SimpleThreadPool --- base/thread.cpp | 10 +++++----- base/thread.hpp | 10 +++++----- map/mwm_tests/multithread_mwm_test.cpp | 2 +- platform/platform_tests/apk_test.cpp | 2 +- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/base/thread.cpp b/base/thread.cpp index c02e283a73..db7887a92e 100644 --- a/base/thread.cpp +++ b/base/thread.cpp @@ -180,12 +180,12 @@ namespace threads } - ThreadPool::ThreadPool(size_t reserve) + SimpleThreadPool::SimpleThreadPool(size_t reserve) { m_pool.reserve(reserve); } - ThreadPool::~ThreadPool() + SimpleThreadPool::~SimpleThreadPool() { for (size_t i = 0; i < m_pool.size(); ++i) { @@ -194,7 +194,7 @@ namespace threads } } - void ThreadPool::Add(IRoutine * pRoutine) + void SimpleThreadPool::Add(IRoutine * pRoutine) { ValueT v; v.first = new Thread(); @@ -205,13 +205,13 @@ namespace threads v.first->Create(pRoutine); } - void ThreadPool::Join() + void SimpleThreadPool::Join() { for (size_t i = 0; i < m_pool.size(); ++i) m_pool[i].first->Join(); } - IRoutine * ThreadPool::GetRoutine(size_t i) const + IRoutine * SimpleThreadPool::GetRoutine(size_t i) const { return m_pool[i].second; } diff --git a/base/thread.hpp b/base/thread.hpp index df83e71b31..b7c9a21124 100644 --- a/base/thread.hpp +++ b/base/thread.hpp @@ -56,17 +56,17 @@ namespace threads }; /// Simple threads container. Takes ownership for every added IRoutine. - class ThreadPool + class SimpleThreadPool { typedef pair ValueT; vector m_pool; - ThreadPool(ThreadPool const &); - ThreadPool & operator=(Thread const &); + SimpleThreadPool(SimpleThreadPool const &); + SimpleThreadPool & operator=(Thread const &); public: - ThreadPool(size_t reserve = 0); - ~ThreadPool(); + SimpleThreadPool(size_t reserve = 0); + ~SimpleThreadPool(); void Add(IRoutine * pRoutine); void Join(); diff --git a/map/mwm_tests/multithread_mwm_test.cpp b/map/mwm_tests/multithread_mwm_test.cpp index ff2df972ab..c59eab4423 100644 --- a/map/mwm_tests/multithread_mwm_test.cpp +++ b/map/mwm_tests/multithread_mwm_test.cpp @@ -74,7 +74,7 @@ namespace srand(666); size_t const count = 20; - threads::ThreadPool pool(count); + threads::SimpleThreadPool pool(count); for (size_t i = 0; i < count; ++i) pool.Add(new FeaturesLoader(src)); diff --git a/platform/platform_tests/apk_test.cpp b/platform/platform_tests/apk_test.cpp index be7754a840..1cabb834f9 100644 --- a/platform/platform_tests/apk_test.cpp +++ b/platform/platform_tests/apk_test.cpp @@ -106,7 +106,7 @@ UNIT_TEST(ApkReader_Multithreaded) srand(static_cast(size)); size_t const count = 20; - threads::ThreadPool pool(count); + threads::SimpleThreadPool pool(count); for (size_t i = 0; i < count; ++i) pool.Add(new ApkTester(path));