aboutsummaryrefslogtreecommitdiffstats
path: root/lib/webrick/utils.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/webrick/utils.rb')
-rw-r--r--lib/webrick/utils.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/webrick/utils.rb b/lib/webrick/utils.rb
index 846829b01f..eb3b907ecf 100644
--- a/lib/webrick/utils.rb
+++ b/lib/webrick/utils.rb
@@ -126,7 +126,7 @@ module WEBrick
##
# Mutex used to synchronize access across threads
- TimeoutMutex = Mutex.new # :nodoc:
+ TimeoutMutex = Thread::Mutex.new # :nodoc:
##
# Registers a new timeout handler
@@ -154,7 +154,7 @@ module WEBrick
TimeoutMutex.synchronize{
@timeout_info = Hash.new
}
- @queue = Queue.new
+ @queue = Thread::Queue.new
@watcher = nil
end