1
0
mirror of https://github.com/danog/process.git synced 2024-12-02 17:51:46 +01:00

Fix ping-many example

This commit is contained in:
Niklas Keller 2017-09-17 22:00:22 +02:00
parent fd1382fa6d
commit a5146213ec

View File

@ -9,13 +9,14 @@ use function Amp\Promise\all;
function show_process_output(Process $process): \Generator
{
$stream = $process->getStdout();
while ($chunk = yield $stream->read()) {
while (null !== $chunk = yield $stream->read()) {
echo $chunk;
}
$code = yield $process->join();
$pid = yield $process->getPid();
echo "Process {$process->getPid()} exited with {$code}\n";
echo "Process {$pid} exited with {$code}\n";
}
Amp\Loop::run(function () {