aboutsummaryrefslogtreecommitdiffstats
path: root/lib/debug.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-08-30 06:22:30 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-08-30 06:22:30 +0000
commit7e24aacf8bd3f6bc45ba7d42263d70dae33d5b24 (patch)
tree163674f4123bf461a86b4f6fd1de964297057bae /lib/debug.rb
parentf48dbbf07455ee4362003c8ecc19612a4d6769d4 (diff)
downloadruby-7e24aacf8bd3f6bc45ba7d42263d70dae33d5b24.tar.gz
Use qualified names
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56037 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/debug.rb')
-rw-r--r--lib/debug.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/debug.rb b/lib/debug.rb
index 5d754d8ebb..394a53e172 100644
--- a/lib/debug.rb
+++ b/lib/debug.rb
@@ -182,7 +182,7 @@ SCRIPT_LINES__ = {} unless defined? SCRIPT_LINES__ # :nodoc:
# Debug is not available in safe mode.
class DEBUGGER__
- MUTEX = Mutex.new # :nodoc:
+ MUTEX = Thread::Mutex.new # :nodoc:
class Context # :nodoc:
DEBUG_LAST_CMD = []