|
|
|
|
|
by anonymoushn
4691 days ago
|
|
It sounds like this sort of problem comes from using a cooperative scheduler to implement concurrency of arbitrary routines rather than control flow. I haven't been in a situation in which it would even be possible for something to yield less often than I expect, because I expect it to run until it yields. Similarly I don't often find that subroutines return too infrequently because I expect them to run until they return. This library is probably nice for the places I would otherwise use threads. |
|