1
0
mirror of https://github.com/danog/parallel.git synced 2024-12-02 17:52:14 +01:00
parallel/test/Context/Fixtures/exiting-process.php

9 lines
122 B
PHP
Raw Normal View History

2019-04-30 21:47:37 +02:00
<?php
use Amp\Parallel\Sync\Channel;
return function (Channel $channel) use ($argv) {
\usleep(100);
exit(1);
};