$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [boost] a thread pool that allows recursive calls
From: Frédéric Bron (frederic.bron_at_[hidden])
Date: 2015-06-13 15:32:49
> Boost.ASIO's io_service provides an excellent threadpool. It's a little
> mutex-happy but most applications won't care about that.
>
> Subtasks can simply be posted to the io_service and they will complete
> asynchronously on the same thread or any other in the threadpool.
>
> You can use callbacks, futures, or coroutines to collect the results of the
> subtasks.
Thanks, I will look at that. At first boost.asio looks rather difficult.
Cheers,
Frédéric