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

ruby-changes:19748

From: yugui <ko1@a...>
Date: Mon, 30 May 2011 07:53:20 +0900 (JST)
Subject: [ruby-changes:19748] yugui:r31794 (ruby_1_9_2): merges r31237 from trunk into ruby_1_9_2.

yugui	2011-05-30 07:48:53 +0900 (Mon, 30 May 2011)

  New Revision: 31794

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=31794

  Log:
    merges r31237 from trunk into ruby_1_9_2.
    --
    * io.c (rb_io_syswrite): While local FS writes are usually
      buffered, the buffers can be full or the file opened with
      O_SYNC. IO#syswrite can also be used on blocking IOs
      (pipe/socket) just like IO#write.
      The patch is written by Eric Wong. [ruby-core:35554]

  Modified files:
    branches/ruby_1_9_2/ChangeLog
    branches/ruby_1_9_2/io.c
    branches/ruby_1_9_2/version.h

Index: ruby_1_9_2/ChangeLog
===================================================================
--- ruby_1_9_2/ChangeLog	(revision 31793)
+++ ruby_1_9_2/ChangeLog	(revision 31794)
@@ -1,3 +1,11 @@
+Mon Apr  4 21:41:26 2011  KOSAKI Motohiro  <kosaki.motohiro@g...>
+
+	* io.c (rb_io_syswrite): While local FS writes are usually
+	  buffered, the buffers can be full or the file opened with
+	  O_SYNC. IO#syswrite can also be used on blocking IOs
+	  (pipe/socket) just like IO#write.
+	  The patch is written by Eric Wong. [ruby-core:35554]
+
 Fri Mar 25 19:39:40 2011  Ben Walton <bwalton@a...>
 
 	* test/test_syslog.rb:
Index: ruby_1_9_2/io.c
===================================================================
--- ruby_1_9_2/io.c	(revision 31793)
+++ ruby_1_9_2/io.c	(revision 31794)
@@ -3854,7 +3854,7 @@
         rb_io_check_closed(fptr);
     }
 
-    n = write(fptr->fd, RSTRING_PTR(str), RSTRING_LEN(str));
+    n = rb_write_internal(fptr->fd, RSTRING_PTR(str), RSTRING_LEN(str));
 
     if (n == -1) rb_sys_fail_path(fptr->pathv);
 
Index: ruby_1_9_2/version.h
===================================================================
--- ruby_1_9_2/version.h	(revision 31793)
+++ ruby_1_9_2/version.h	(revision 31794)
@@ -1,5 +1,5 @@
 #define RUBY_VERSION "1.9.2"
-#define RUBY_PATCHLEVEL 221
+#define RUBY_PATCHLEVEL 222
 #define RUBY_VERSION_MAJOR 1
 #define RUBY_VERSION_MINOR 9
 #define RUBY_VERSION_TEENY 1

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

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