mirror of
https://github.com/danog/parallel.git
synced 2024-12-02 17:52:14 +01:00
9 lines
122 B
PHP
9 lines
122 B
PHP
<?php
|
|
|
|
use Amp\Parallel\Sync\Channel;
|
|
|
|
return function (Channel $channel) use ($argv) {
|
|
\usleep(100);
|
|
exit(1);
|
|
};
|