forked from organicmaps/organicmaps
[generator] Fix parallel processing in ForEachParallelFromDatRawFormat()
This commit is contained in:
parent
8bb3bbe85b
commit
0ba20f3512
1 changed files with 5 additions and 2 deletions
|
@ -14,6 +14,7 @@
|
|||
#include <list>
|
||||
#include <mutex>
|
||||
#include <string>
|
||||
#include <thread>
|
||||
#include <vector>
|
||||
|
||||
namespace serial
|
||||
|
@ -368,9 +369,11 @@ void ForEachParallelFromDatRawFormat(size_t threadsCount, std::string const & fi
|
|||
}
|
||||
};
|
||||
|
||||
base::thread_pool::delayed::ThreadPool threadPool{threadsCount};
|
||||
std::vector<std::thread> workers;
|
||||
for (size_t i = 0; i < threadsCount; ++i)
|
||||
threadPool.Push(concurrentProcessor);
|
||||
workers.emplace_back(concurrentProcessor);
|
||||
for (auto & thread : workers)
|
||||
thread.join();
|
||||
}
|
||||
template <class SerializationPolicy = serialization_policy::MinSize>
|
||||
std::vector<FeatureBuilder> ReadAllDatRawFormat(std::string const & fileName)
|
||||
|
|
Loading…
Add table
Reference in a new issue