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

ruby-changes:21088

From: kosaki <ko1@a...>
Date: Wed, 31 Aug 2011 05:29:04 +0900 (JST)
Subject: [ruby-changes:21088] kosaki:r33137 (ruby_1_9_3): merge revision(s) 33132:

kosaki	2011-08-31 05:28:50 +0900 (Wed, 31 Aug 2011)

  New Revision: 33137

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

  Log:
    merge revision(s) 33132:
    
    * thread.c (rb_thread_select): critical typo in r33117.

  Modified files:
    branches/ruby_1_9_3/ChangeLog
    branches/ruby_1_9_3/thread.c

Index: ruby_1_9_3/ChangeLog
===================================================================
--- ruby_1_9_3/ChangeLog	(revision 33136)
+++ ruby_1_9_3/ChangeLog	(revision 33137)
@@ -1,3 +1,7 @@
+Wed Aug 31 05:28:45 2011  NAKAMURA Usaku  <usa@r...>
+
+	* thread.c (rb_thread_select): critical typo in r33117.
+
 Wed Aug 31 05:28:26 2011  NAKAMURA Usaku  <usa@r...>
 
 	* test/-ext-/old_thread_select/test_old_thread_select.rb
Index: ruby_1_9_3/thread.c
===================================================================
--- ruby_1_9_3/thread.c	(revision 33136)
+++ ruby_1_9_3/thread.c	(revision 33137)
@@ -2704,7 +2704,7 @@
 	rb_fd_copy(efds, except, max);
     }
 
-    retval = rb_thread_fd_select(max, rfds, efds, wfds, timeout);
+    retval = rb_thread_fd_select(max, rfds, wfds, efds, timeout);
 
     if (rfds)
 	rb_fd_term(rfds);

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

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