> I'm not exactly sure what "coroutines" are? Could you give some > background information? It sounds like a different way of representing > parralellism, but i'm unsure.
It's a way to implement cooperative multitasking: you can have multiple threads, but only one executing at any time. The thread can't be preempted, so it has to give up the processor voluntarilly. Martin _______________________________________________ glob2-devel mailing list [email protected] http://lists.nongnu.org/mailman/listinfo/glob2-devel
