aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorsho-h <sho-h@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-01-19 02:03:50 +0000
committersho-h <sho-h@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-01-19 02:03:50 +0000
commitd4ad4d2db7723a2ea2899fc5c3f1d936029c3f87 (patch)
tree8bc57ba7f8d6242883320070cc030ac4497083cf /lib
parentde2678e74f1f83be9ce1eba4ca0997e3b2cb28ec (diff)
downloadruby-d4ad4d2db7723a2ea2899fc5c3f1d936029c3f87.tar.gz
* lib/shell.rb (Shell.debug_output_exclusive_unlock): remove
because Mutex#exclusive_unlock was already deleted. [fix GH-1185] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53583 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/shell.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/shell.rb b/lib/shell.rb
index bf389795b7..8216eb2862 100644
--- a/lib/shell.rb
+++ b/lib/shell.rb
@@ -168,7 +168,7 @@ class Shell
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