Tagged Questions

Coroutines are a general control structure whereby flow control is cooperatively passed between two different routines without returning.

learn more… | top users | synonyms

33
votes
4answers
3k views

Coroutine vs Continuation vs Generator

What is the difference between a coroutine and a continuation and a generator ?
14
votes
3answers
303 views

Monad transformer for progress tracking

I am looking for a monad transformer that can be used to track the progress of a procedure. To explain how it would be used, consider the following code: procedure :: ProgressT IO () procedure = task ...
13
votes
5answers
1k views

Coroutines for game design?

I've heard that coroutines are a good way to structure games (e.g., PEP 342: "Coroutines are a natural way of expressing many algorithms, such as simulations, games...") but I'm having a hard time ...
12
votes
4answers
405 views

Is it safe to yield from within a “with” block in Python (and why)?

The combination of coroutines and resource acquisition seems like it could have some unintended (or unintuitive) consequences. The basic question is whether or not something like this works: def ...
12
votes
3answers
4k views

Python generators and co-routines

Can someone provide me with a brief introduction on how to use Python generators to implement coroutines?
11
votes
2answers
691 views

Coroutines in C#

I am looking to implement co-routines (user schedualed threads) in c#. When using c++ I was previously using fibers. As I see on the internet fibers do not exist in C#. I would like to get simillar ...
10
votes
6answers
1k views

What are use-cases for a coroutine?

The concept of a coroutine sounds very interesting, but I don't know, if it makes sense in a real productive environment? What are use-cases for coroutines, that can be solved more elegant, simpler or ...
9
votes
3answers
307 views

In python is there a way to check if a function is a “generator function” before calling it?

Lets say I have two functions: def foo(): return 'foo' def bar(): yield 'bar' The first one is a normal function, and the second is a generator function. Now I want to write something like ...
8
votes
6answers
1k views

Available Coroutine Libraries in Java

I would like to do some stuff in Java that would be clearer if written using concurrent routines, but for which full-on threads are serious overkill. The answer, of course, is the use of coroutines, ...
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 ...
7
votes
2answers
252 views

How do coroutines improve performance

I've been seeing a lot of talks and articles on coroutines in python. They are considered to be "microthreads" and I've heard they improve performance. How do coroutines improve performance? From ...
7
votes
1answer
1k views

Implementing coroutines in Java

This question is related to my question on existing coroutine implementations in Java. If, as I suspect, it turns out that there is no full implementation of coroutines currently available in Java, ...
6
votes
2answers
190 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 ...
6
votes
2answers
211 views

ucontext across threads

Are contexts (the objects manipulated by functions in ucontext.h) allowed to be shared across threads? That is, can I swapcontext with the second argument being a context created in makecontext on ...
6
votes
4answers
241 views

Why do most object oriented languages not support coroutines?

I'm currently preparing for an exam. One of the question I found in an old exam is: "Why do most object oriented languages not support coroutines? (Hint: It's not because they support threads)" The ...
6
votes
1answer
530 views

Is there a way to implement Caliburn-like co-routines in VB.NET since there's no yield keyword

Note that I'm aware of other yield in vb.net questions here on SO. I'm playing around with Caliburn lately. Bunch of great stuff there, including co-routines implementation. Most of the work I'm ...
6
votes
2answers
774 views

Differences between Coroutines and GoTo?

I always read about the horrible thing that "goto" is. But, todaym reading about the google programming language "Go" http://golang.org/ and i see that it suports Coroutines (Goroutines). The ...
5
votes
1answer
148 views

Python: Yield Dict Elements in Producing Coroutines?

Before I say a word, let me thank the community for being the authoritative location for my programming queries as of recent. And pretend those compliments weren't expressed using words. Anyway, the ...
5
votes
1answer
286 views

Is it possible to implement coroutines using only LISP primitives?

First, I'm a LISP newbie. What I want to get is a cooperative micro-threading feature. And this can be gained with coroutine. As I know, Scheme supports coroutines via continuations. However, not ...
5
votes
3answers
274 views

How can I create a parallel stack and run a coroutine on it?

In today's "Zneak's time-wasting adventures", I decided I should try to implement coroutines (I think that's how I should call them). I expect to have to use assembler, and probably some C if I want ...
5
votes
5answers
494 views

Scripting languages that support fibers/coroutines?

I'd like to start a new network server project in a language that supports concurrency through fibers aka coroutines aka user-mode threads. Determining what exactly are my options has been ...
5
votes
2answers
802 views

What is coroutine?

What is coroutine? How is it related to concurrency?
4
votes
3answers
165 views

Safe cross platform coroutines

All coroutine implementations I've encountered use assembly or inspect the contents of jmp_buf. The problem with this is it inherently not cross platform. I think the following implementation ...
4
votes
2answers
405 views

Lua co-routines

I'm trying to get an understanding of how I can use co-routines to "pause" a script and wait until some processing is done before resuming. Perhaps I'm looking at co-routines in the wrong way. But my ...
4
votes
3answers
329 views

Alternatives to coroutines

This example has been used in another question to illustrate how coroutines can be used to script cutscenes in a video game: bob.walkto(jane) bob.lookat(jane) bob.say("How are you?") wait(2) ...
4
votes
1answer
694 views

What's the advantage of stack-less Python's microthread than Lua's coroutine in state machine implementation for game?

Any advantage on stack-less python implentation than Lua's coroutine? What's the difference of them?
4
votes
2answers
266 views

Is there a safe way to use setjmp() and longjmp() in C++?

I was under the impression that using setjmp() and longjmp() in C++ was almost guaranteed to mess up the stack, since these functions don't perform unwinding like, say, exceptions do. This MSDN page, ...
4
votes
2answers
230 views

How are coroutines implemented?

I have a question about coroutine implementation. I saw coroutine first on Lua and stackless-python. I could understand the concept of it, and how to use yield keyword, but I cannot figure out how it ...
4
votes
4answers
1k views

Fibers in C#: are they faster than iterators, and have people used them?

So I was chatting with a colleague about fibers and turned up this paper from 2003 that describes a implementation of coroutines in C# using the Fiber API. The implementation of Yield in this paper ...
4
votes
2answers
465 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 ...
3
votes
1answer
83 views

Thread safe coroutines with asio

Is there any way I can have thread-safe coroutines along with boost::asio? I want one io_service to be running on multiple threads and to have some of my handlers be coroutines. Boost.Coroutine ...
3
votes
3answers
208 views

Is there an equivalent of goroutines in D?

I love Go, especially the goroutines. They are simple and efficient. After some digging, it seems that they are basically fibers multiplexed onto a pool of kernel threads (correct me if I'm wrong). ...
3
votes
2answers
45 views

How are generators and coroutines implemented in CPython?

I've read that in CPython, the interpreter stack (the list of Python functions called to reach this point) is mixed with the C stack (the list of C functions that were called in the interpreter's own ...
3
votes
1answer
131 views

Problem using greenlet to execute multiple functions simultaneously

The following script has the purpose of execute many functions simultaneously, but i don't have idea why it's not working correctly. The functions are executed in sequential way, not parallel. I ...
3
votes
2answers
218 views

Parallel programming with coroutines in Python

Coroutines are a great paradigm to ease concurrent programming. And most of the time, concurrent tasks are easily parallelizable. In Go language, it is easy to use goroutines to perform parallel ...
3
votes
3answers
354 views

Python generators and coroutines

I am studying coroutines and generators in various programming languages. I was wondering if there is a cleaner way to combine together two coroutines implemented via generators than yielding back at ...
3
votes
2answers
206 views

Are Python coroutines actually used in a project?

I read this page on coroutines from David Beazley a while ago, and I wondered if any actual Python-based software made use of them ? How is it coroutines seem like the most unused feature in Python ? ...
3
votes
1answer
188 views

What is offered by coroutines in python that improve a naive consumer/producer setup?

I've read a little about coroutines, in particular with python, and something is not entirely obvious to me. I have implemented a producer/consumer model, a basic version of which is as follows: ...
3
votes
2answers
387 views

C# and Caliburn - RescueAttribute and Coroutines

I think I have found a situation where RescueAttribute is broken. Or maybe I am using co-routines incorrectly. I have a ViewModel like this: [Rescue("Rescue")] class MyViewModel { //... left ...
3
votes
3answers
628 views

Difference between a “coroutine” and a “thread”?

What are the differences between a "coroutine" and a "thread"?
3
votes
2answers
688 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 ...
3
votes
5answers
487 views

Language that supports serializing coroutines

I don't think such support exists in current languages. I think what I want to do could be solved by a "workflow engine". But the problem I have with workflow's is generally they are: ...
2
votes
1answer
98 views

Continuations/Coroutines/Generators in C++ / gcc / linux

Background: I'm trying to figure out how to implement continuations/coroutines/generators (whatever the following is called) by posing this toy problem. The environment is C++11 on gcc 4.6 and linux ...
2
votes
2answers
124 views

How to make spaghetti stack with C?

I'm trying to make coroutine and continuation with C. I realized I need some kind of spaghetti stack. Is it possible to execute a function within a new call-stack? Of course within single thread. How ...
2
votes
4answers
193 views

What are the benefits of coroutines?

I've been learning some lua for game development. I heard about coroutines in other languages but really came up on them in lua. I just don't really understand how useful they are, I heard a lot of ...
2
votes
2answers
134 views

Blocking calls with Gevent and WSGI

I've just started working with coroutines and have read up on gevent and greenlets. For a test I served this code through gevents pywsgi module: from gevent.pywsgi import WSGIServer import gevent ...
2
votes
2answers
161 views

Eventlet and Python daemon, Foo not called?

I am trying to build a Python deamon which listen to a queue (Redis Kombu). Grab the task and spawn a greenthread to process this task. I can receive the task and consume it without trouble but when ...
2
votes
1answer
201 views

How are coroutines implemented in smalltalk?

Can I implement coroutines in smalltalk? If your answer is no: why not? Or if its yes: can you give me an example?
2
votes
5answers
250 views

Lua :: How to write simple program that will load multiple CPUs?

I haven't been able to write a program in Lua that will load more than one CPU. Since Lua supports the concept via coroutines, I believe it's achievable. Reason for me failing can be one of: It's ...
2
votes
1answer
256 views

What exactly makes Erlang process, green thread, coroutine “lighter” than kernel thread? What about context switching that's heavy? [closed]

Possible Duplicate: Technically why is processes in Erlang more efficient than OS threads? Any time Elrang processes or green threads or coroutines are mentioned, they are always described ...

1 2