$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [boost] a thread pool that allows recursive calls
From: Oliver Kowalke (oliver.kowalke_at_[hidden])
Date: 2015-06-12 02:14:58
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/