Re: Where can i find examples of multi-threaded fibers?

2015-07-28 Thread Rob T via Digitalmars-d-learn
On Monday, 27 July 2015 at 18:30:06 UTC, Gary Willoughby wrote: Where is the discussion? This must be it http://forum.dlang.org/thread/pflkijjjuyyhextxv...@forum.dlang.org I'm interested in the same subject right now, and was wondering about the same question you asked.

Re: Where can i find examples of multi-threaded fibers?

2015-07-27 Thread Gary Willoughby via Digitalmars-d-learn
On Monday, 27 July 2015 at 08:00:10 UTC, Marc Schütz wrote: On Sunday, 26 July 2015 at 18:07:51 UTC, Gary Willoughby wrote: In the description for Fiber in std.thread is the following[1]: Please note that there is no requirement that a fiber be bound to one specific thread. Rather, fibers may

Re: Where can i find examples of multi-threaded fibers?

2015-07-27 Thread via Digitalmars-d-learn
On Sunday, 26 July 2015 at 18:07:51 UTC, Gary Willoughby wrote: In the description for Fiber in std.thread is the following[1]: Please note that there is no requirement that a fiber be bound to one specific thread. Rather, fibers may be freely passed between threads so long as they are not

Re: Where can i find examples of multi-threaded fibers?

2015-07-26 Thread Ali Çehreli via Digitalmars-d-learn
On 07/26/2015 11:07 AM, Gary Willoughby wrote: In the description for Fiber in std.thread is the following[1]: Please note that there is no requirement that a fiber be bound to one specific thread. Rather, fibers may be freely passed between threads so long as they are not currently

Where can i find examples of multi-threaded fibers?

2015-07-26 Thread Gary Willoughby via Digitalmars-d-learn
In the description for Fiber in std.thread is the following[1]: Please note that there is no requirement that a fiber be bound to one specific thread. Rather, fibers may be freely passed between threads so long as they are not currently executing. How would this be accomplished and are there

Re: Where can i find examples of multi-threaded fibers?

2015-07-26 Thread Gary Willoughby via Digitalmars-d-learn
On Sunday, 26 July 2015 at 19:51:08 UTC, Ali Çehreli wrote: On 07/26/2015 11:07 AM, Gary Willoughby wrote: In the Thanks for the example. I'll study it.