--- Coro/Coro.pm 2001/11/06 20:34:09 1.41 +++ Coro/Coro.pm 2001/11/06 20:37:20 1.42 @@ -21,9 +21,7 @@ =head1 DESCRIPTION This module collection manages coroutines. Coroutines are similar to -Threads but don't run in parallel. - -This module is still experimental, see the BUGS section below. +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 @@ -327,7 +325,7 @@ - you must make very sure that no coro is still active on global destruction. very bad things might happen otherwise (usually segfaults). - - this module is not thread-safe. You must only ever use this module from + - this module is not thread-safe. You should only ever use this module from the same thread (this requirement might be loosened in the future to allow per-thread schedulers, but Coro::State does not yet allow this).