[前][次][番号順一覧][スレッド一覧]

ruby-changes:5870

From: usa <ko1@a...>
Date: Tue, 17 Jun 2008 18:11:50 +0900 (JST)
Subject: [ruby-changes:5870] Ruby:r17377 (trunk): * include/ruby/win32.h (pipe): expand pipe buffer size.

usa	2008-06-17 18:11:28 +0900 (Tue, 17 Jun 2008)

  New Revision: 17377

  Modified files:
    trunk/ChangeLog
    trunk/include/ruby/win32.h

  Log:
    * include/ruby/win32.h (pipe): expand pipe buffer size.
    


  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/include/ruby/win32.h?r1=17377&r2=17376&diff_format=u
  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/ChangeLog?r1=17377&r2=17376&diff_format=u

Index: include/ruby/win32.h
===================================================================
--- include/ruby/win32.h	(revision 17376)
+++ include/ruby/win32.h	(revision 17377)
@@ -134,7 +134,7 @@
 #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)
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 17376)
+++ ChangeLog	(revision 17377)
@@ -1,3 +1,7 @@
+Tue Jun 17 18:11:01 2008  NAKAMURA Usaku  <usa@r...>
+
+	* include/ruby/win32.h (pipe): expand pipe buffer size.
+
 Tue Jun 17 17:07:35 2008  NAKAMURA Usaku  <usa@r...>
 
 	* win32/win32.c (CreateChild): no need to inherit handles here because

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]