$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [Boost-users] [coroutine] Launch a thread in a coroutine
From: Pierre Talbot (ptalbot_at_[hidden])
Date: 2014-01-18 08:14:58
On 01/18/2014 08:59 AM, Oliver Kowalke wrote:
> 2014/1/18 Pierre Talbot <ptalbot_at_[hidden] <mailto:ptalbot_at_[hidden]>>
>
> Thanks, is there something planned in the future for such a
> capability, as a function "move_to_thread"? Or is there a way that
> already exists to do that?
>
>
> coroutines can work only in one thread - you can't have a coroutine in
> thread A and its counterpart, synthesized by the framework (used to
> switch back to calling context), move to another thread B
>
That makes senses, thanks for responses.