I have the following code currently:
using boost::filesystem;
directory_iterator end_iter;
for (directory_iteratory dir_iter("/some/path/"); dir_iter != end_iter; ++dir_iter)
{
functionCall(some_variable, dir_iter);
}
Now, I want to parallelize that for loop. Normally this is easily done with openmp, but the directory iterator complicates things. I tried the following, but this isn't working.
using boost::filesystem;
boost::thread_group threads;
directory_iterator end_iter;
for (directory_iteratory dir_iter("/some/path/"); dir_iter != end_iter; ++dir_iter)
{
boost::thread *thread = new boost::thread(functionCall, some_variable, dir_iter);
threads.add(thread);
}
threads.join_all();
So, that doesn't work. What's the right way to do this?