Tagged Questions
33
votes
4answers
3k views
Coroutine vs Continuation vs Generator
What is the difference between a coroutine and a continuation and a generator ?
8
votes
8answers
2k views
Design Pattern Alternative to Coroutines
Currently, I have a large number of C# computations (method calls) residing in a queue that will be run sequentially. Each computation will use some high-latency service (network, disk...).
I was ...
6
votes
2answers
199 views
CPS compiler for coroutine implementation
I used to work on IronLua in my spare time. Lexing and parsing is currently done. I kind of stopped working on it out of frustration since implementing Lua coroutines in .NET without resorting to ...
4
votes
2answers
467 views
Seeking contrived example code: continuations!
So I believe I understand continuations now, at least on some level, thanks to the community scheme wiki and Learn Scheme in Fixnum Days.
But I'd like more practice -- that is, more example code I ...
2
votes
1answer
55 views
What is the trick behind generating Javascript code with continuations?
I am looking for a way to add to Javascript a very specific form of non-preemptive multithreading. Mozilla's Javascript 1.7 supports native coroutines using yield, but I prefer not to use a ...
1
vote
1answer
178 views
Mono Continuations - Memory keeps increasing after store()
Here's Mono Continuations' continuation_store (...). From looking at the code below, it appears as though store() follows these two branches:
cont->saved_stack && num_bytes <= ...