1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 01:02:25 +01:00

MFH: Fixed bug #32553 (mmap loads only the 1st 2000000 bytes on Win32).

This commit is contained in:
Ilia Alshanetsky
2005-04-06 14:47:51 +00:00
parent 84c1e20749
commit eaed8e0922

View File

@@ -410,10 +410,8 @@ END_EXTERN_C()
#define PHP_STREAM_OPTION_RETURN_NOTIMPL -2 /* underlying stream does not implement; streams can handle it instead */
/* copy up to maxlen bytes from src to dest. If maxlen is PHP_STREAM_COPY_ALL, copy until eof(src).
* Uses mmap if the src is a plain file and at offset 0
* To ensure we don't take up too much memory when reading large files, set the default mmap length
* at this many bytes */
#define PHP_STREAM_COPY_ALL 2000000
* Uses mmap if the src is a plain file and at offset 0 */
#define PHP_STREAM_COPY_ALL ((size_t)-1)
BEGIN_EXTERN_C()
PHPAPI size_t _php_stream_copy_to_stream(php_stream *src, php_stream *dest, size_t maxlen STREAMS_DC TSRMLS_DC);