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

ruby-changes:18010

From: yugui <ko1@a...>
Date: Thu, 2 Dec 2010 17:06:22 +0900 (JST)
Subject: [ruby-changes:18010] Ruby:r30031 (ruby_1_9_2): merges r29415 from trunk into ruby_1_9_2.

yugui	2010-12-02 17:06:05 +0900 (Thu, 02 Dec 2010)

  New Revision: 30031

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

  Log:
    merges r29415 from trunk into ruby_1_9_2.
    --
    * io.c (fptr_finalize): write_mutex might have been destroyed
      already in finalization phase, as the order of finalizers is not
      guaranteed.  rb_mutex_t should be used in place of Mutex object
      in the future.

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

Index: ruby_1_9_2/ChangeLog
===================================================================
--- ruby_1_9_2/ChangeLog	(revision 30030)
+++ ruby_1_9_2/ChangeLog	(revision 30031)
@@ -1,3 +1,10 @@
+Wed Oct  6 11:52:12 2010  Nobuyoshi Nakada  <nobu@r...>
+
+	* io.c (fptr_finalize): write_mutex might have been destroyed
+	  already in finalization phase, as the order of finalizers is not
+	  guaranteed.  rb_mutex_t should be used in place of Mutex object
+	  in the future.
+
 Mon Oct  4 12:43:47 2010  Nobuyoshi Nakada  <nobu@r...>
 
 	* parse.y (regexp): dregexp has literal string only at the head
Index: ruby_1_9_2/version.h
===================================================================
--- ruby_1_9_2/version.h	(revision 30030)
+++ ruby_1_9_2/version.h	(revision 30031)
@@ -1,5 +1,5 @@
 #define RUBY_VERSION "1.9.2"
-#define RUBY_PATCHLEVEL 61
+#define RUBY_PATCHLEVEL 62
 #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/

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