summaryrefslogtreecommitdiff
path: root/main/streams
diff options
context:
space:
mode:
authorAlex Dowad <alexinbeijing@gmail.com>2020-04-24 22:37:17 +0200
committerAlex Dowad <alexinbeijing@gmail.com>2020-06-24 22:26:00 +0200
commite673c63989832c368242d150c75016778a2aefb3 (patch)
tree278fed6f2af26d3469d6d85832b3605620041dc5 /main/streams
parent7b4179e8dab74e5f6bda08ea45ac985c4f92bfd9 (diff)
downloadphp-git-e673c63989832c368242d150c75016778a2aefb3.tar.gz
Correct comment in plain_wrapper.c (refers to microseconds, not milliseconds)
Diffstat (limited to 'main/streams')
-rw-r--r--main/streams/plain_wrapper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/streams/plain_wrapper.c b/main/streams/plain_wrapper.c
index b855fe9db9..34d0590f44 100644
--- a/main/streams/plain_wrapper.c
+++ b/main/streams/plain_wrapper.c
@@ -392,7 +392,7 @@ static ssize_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 10ms periods. */
+ /* If there's nothing to read, wait in 10us periods. */
if (0 == avail_read) {
usleep(10);
}