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 ...
3
votes
2answers
700 views

Overhead of Mono Tasklet/Co-Routines

What are the main performance overheads (gc/stack copying...) of the new Mono Continuations/Tasklet framework? How does this overhead (coroutine performance / raw performance) compare to other ...
1
vote
0answers
81 views

Proving My Coroutines Work

I just wrote a coroutine (as an exercise) implementation based on Mono Continuations (very weird experience). What are some ways / approaches that I should take to prove its correctness?
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 <= ...