We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b8790d commit ce1132cCopy full SHA for ce1132c
src/Process.php
@@ -130,13 +130,6 @@ public function start(LoopInterface $loop, $interval = 0.1)
130
$this->stdout->on('close', $streamCloseHandler);
131
$this->stderr = new ReadableResourceStream($this->pipes[2], $loop);
132
$this->stderr->on('close', $streamCloseHandler);
133
-
134
- // legacy PHP < 5.4 SEGFAULTs for unbuffered, non-blocking reads
135
- // work around by enabling read buffer again
136
- if (PHP_VERSION_ID < 50400) {
137
- stream_set_read_buffer($this->pipes[1], 1);
138
- stream_set_read_buffer($this->pipes[2], 1);
139
- }
140
}
141
142
/**
0 commit comments