mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-21 04:06:46 +00:00
81797980f7
URLs automatically rewritten from /search?dist=Foo or /dist/Foo to /dist/Foo/ (note trailing slash). After a 2002(!) reorganization, this is the preferred way to refer to modules on search.cpan.org. This pass brought to you by http://people.freebsd.org/~fenner/fix-search
11 lines
417 B
Plaintext
11 lines
417 B
Plaintext
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 it's own
|
|
callchain, it's own set of lexicals and it's own set of perl's most
|
|
important global variables.
|
|
|
|
Author: Marc Lehmann <pcg@goof.com>
|
|
WWW: http://search.cpan.org/dist/Coro/
|