ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Coro/Coro.pm
(Generate patch)

Comparing Coro/Coro.pm (file contents):
Revision 1.9 by root, Sun Jul 15 02:35:52 2001 UTC vs.
Revision 1.11 by root, Sun Jul 15 03:24:18 2001 UTC

113terminated. 113terminated.
114 114
115=cut 115=cut
116 116
117sub async(&) { 117sub async(&) {
118 (new Coro $_[0])->ready; 118 my $pid = new Coro $_[0];
119 $pid->ready;
120 $pid;
119} 121}
120 122
121=item schedule 123=item schedule
122 124
123Calls the scheduler. Please note that the current process will not be put 125Calls the scheduler. Please note that the current process will not be put
1991; 2011;
200 202
201=head1 SEE ALSO 203=head1 SEE ALSO
202 204
203L<Coro::Channel>, L<Coro::Cont>, L<Coro::Specific>, L<Coro::Semaphore>, 205L<Coro::Channel>, L<Coro::Cont>, L<Coro::Specific>, L<Coro::Semaphore>,
204L<Coro::Signal>, L<Coro::State>. 206L<Coro::Signal>, L<Coro::State>, L<Coro::Event>.
205 207
206=head1 AUTHOR 208=head1 AUTHOR
207 209
208 Marc Lehmann <pcg@goof.com> 210 Marc Lehmann <pcg@goof.com>
209 http://www.goof.com/pcg/marc/ 211 http://www.goof.com/pcg/marc/

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines