diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-08-30 06:22:30 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-08-30 06:22:30 +0000 |
commit | 4b298ad77a8388f0aae62daeca66659a8effeade () | |
tree | 163674f4123bf461a86b4f6fd1de964297057bae /prelude.rb | |
parent | 0df79477bd2cd534ad2d89bfdbf9708c64b59eed (diff) |
Use qualified names
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56037 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | prelude.rb | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,5 +1,6 @@ class Thread - MUTEX_FOR_THREAD_EXCLUSIVE = Mutex.new # :nodoc: # call-seq: # Thread.exclusive { block } => obj @@ -8,7 +9,7 @@ class Thread # value of the block. A thread executing inside the exclusive section will # only block other threads which also use the Thread.exclusive mechanism. def self.exclusive - warn "Thread.exclusive is deprecated, use Mutex", caller MUTEX_FOR_THREAD_EXCLUSIVE.synchronize{ yield } |