--- cvsroot/Coro/Coro.pm 2010/11/11 00:09:08 1.279 +++ cvsroot/Coro/Coro.pm 2010/11/11 15:07:16 1.280 @@ -615,7 +615,18 @@ coro. This method simply sets the C<< $coro->{desc} >> member to the given -string. You can modify this member directly if you wish. +string. You can modify this member directly if you wish, and in fact, this +is often preferred to indicate major processing states that cna then be +seen for example in a L session: + + sub my_long_function { + local $Coro::current->{desc} = "now in my_long_function"; + ... + $Coro::current->{desc} = "my_long_function: phase 1"; + ... + $Coro::current->{desc} = "my_long_function: phase 2"; + ... + } =cut