blob: e661a49a863c80e2c454ea923bd1ccc467cc2f4e (
plain)
1
2
3
4
5
6
7
8
9
|
This module collection manages coroutines. Coroutines are similar to
threads but don't run in parallel.
In this module, coroutines are defined as "callchain + lexical variables
+ @_ + $_ + $@ + $^W + C stack), that is, a coroutine has its own
callchain, its own set of lexicals and its own set of perl's most
important global variables.
WWW: https://metacpan.org/release/Coro
|