Tagged Questions

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 ...
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 <= ...