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

ruby-changes:41509

From: sho-h <ko1@a...>
Date: Tue, 19 Jan 2016 11:03:17 +0900 (JST)
Subject: [ruby-changes:41509] sho-h:r53583 (trunk): * lib/shell.rb (Shell.debug_output_exclusive_unlock): remove

sho-h	2016-01-19 11:03:50 +0900 (Tue, 19 Jan 2016)

  New Revision: 53583

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=53583

  Log:
    * lib/shell.rb (Shell.debug_output_exclusive_unlock): remove
      because Mutex#exclusive_unlock was already deleted. [fix GH-1185]

  Modified files:
    trunk/ChangeLog
    trunk/lib/shell.rb
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 53582)
+++ ChangeLog	(revision 53583)
@@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Tue Jan 19 10:09:58 2016  Sho Hashimoto  <sho-h@r...>
+
+	* lib/shell.rb (Shell.debug_output_exclusive_unlock): remove
+	  because Mutex#exclusive_unlock was already deleted. [fix GH-1185]
+
 Tue Jan 19 09:38:27 2016  Nick Cox  <nick@n...>
 
 	* vm_method.c: fix grammar in respond_to? warning.
Index: lib/shell.rb
===================================================================
--- lib/shell.rb	(revision 53582)
+++ lib/shell.rb	(revision 53583)
@@ -168,7 +168,7 @@ class Shell https://github.com/ruby/ruby/blob/trunk/lib/shell.rb#L168
     end
 
     # os resource mutex
-    mutex_methods = ["unlock", "lock", "locked?", "synchronize", "try_lock", "exclusive_unlock"]
+    mutex_methods = ["unlock", "lock", "locked?", "synchronize", "try_lock"]
     for m in mutex_methods
       def_delegator("@debug_output_mutex", m, "debug_output_"+m.to_s)
     end

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

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