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

Comparing Coro/Coro.pm (file contents):
Revision 1.10 by root, Sun Jul 15 02:36:54 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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines