summaryrefslogtreecommitdiffstats
path: root/include/ruby/win32.h
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-06-17 09:11:28 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-06-17 09:11:28 +0000
commitd84e1496a20faf6b28aaa432b24575abceb1e704 (patch)
treeb176d1daef69046231f259d5a4f75759da15c041 /include/ruby/win32.h
parent0226b8af3a1353eb13b1d25dc73a1131a7976d79 (diff)
downloadruby-d84e1496a20faf6b28aaa432b24575abceb1e704.tar.gz
ruby-d84e1496a20faf6b28aaa432b24575abceb1e704.tar.xz
ruby-d84e1496a20faf6b28aaa432b24575abceb1e704.zip
* include/ruby/win32.h (pipe): expand pipe buffer size.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@17377 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include/ruby/win32.h')
-rw-r--r--include/ruby/win32.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ruby/win32.h b/include/ruby/win32.h
index a340586d3..c9a03f0a2 100644
--- a/include/ruby/win32.h
+++ b/include/ruby/win32.h
@@ -134,7 +134,7 @@ extern DWORD rb_w32_osid(void);
#define utime(_p, _t) rb_w32_utime(_p, _t)
#define lseek(_f, _o, _w) _lseeki64(_f, _o, _w)
-#define pipe(p) _pipe(p, 2048L, O_BINARY)
+#define pipe(p) _pipe(p, 65536L, O_BINARY)
#define close(h) rb_w32_close(h)
#define fclose(f) rb_w32_fclose(f)
#define read(f, b, s) rb_w32_read(f, b, s)