summaryrefslogtreecommitdiff
path: root/main/streams/plain_wrapper.c
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2015-07-02 15:19:38 +0200
committerAnatol Belski <ab@php.net>2015-07-02 15:19:38 +0200
commit6f3dd4d45b022504bf334add7934536289ce381c (patch)
tree611dff86542252e45137904f7c9fc72f5e067d0d /main/streams/plain_wrapper.c
parent58b982afed4f4a5c00190e81b229375bceabe8ab (diff)
downloadphp-git-6f3dd4d45b022504bf334add7934536289ce381c.tar.gz
fix pipe peek timeout
Diffstat (limited to 'main/streams/plain_wrapper.c')
-rw-r--r--main/streams/plain_wrapper.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/main/streams/plain_wrapper.c b/main/streams/plain_wrapper.c
index 8122a76efe..101fe4aa53 100644
--- a/main/streams/plain_wrapper.c
+++ b/main/streams/plain_wrapper.c
@@ -378,11 +378,11 @@ static size_t php_stdiop_read(php_stream *stream, char *buf, size_t count)
if (!PeekNamedPipe(ph, NULL, 0, NULL, &avail_read, NULL)) {
break;
}
- /* If there's nothing to read, wait in 100ms periods. */
+ /* If there's nothing to read, wait in 10ms periods. */
if (0 == avail_read) {
- usleep(100000);
+ usleep(10);
}
- } while (0 == avail_read && retry++ < 320);
+ } while (0 == avail_read && retry++ < 3200000);
/* Reduce the required data amount to what is available, otherwise read()
will block.*/