13 Jun
2015
13 Jun
'15
7:34 p.m.
I've had published a library, boost.task, some years before which might help.
It solves the problem of many depended tasks M (parent-task waiting on sub-tasks) without blocking the worker thread (threadpool with N worker threads) and M
N. The lib requires the old boost.fiber library.
You could use it as a blueprint or you wait till I've finished boost.job.
boost.task: http://svn.boost.org/svn/boost/sandbox/task old boost.fiber: http://svn.boost.org/svn/boost/sandbox/fiber/
Thanks, I will have a look at that. It looks like exactly what I need. Frédéric