mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
webrick/utils.rb: mark by class name
* lib/webrick/utils.rb (WEBrick::Utils::TimeoutHandler::Thread): use particular class to mark by the class name. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46651 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
931d2fd5d8
commit
ed762c0be1
1 changed files with 2 additions and 3 deletions
|
@ -129,6 +129,8 @@ module WEBrick
|
|||
class TimeoutHandler
|
||||
include Singleton
|
||||
|
||||
class Thread < ::Thread; end
|
||||
|
||||
##
|
||||
# Mutex used to synchronize access across threads
|
||||
TimeoutMutex = Mutex.new # :nodoc:
|
||||
|
@ -158,9 +160,6 @@ module WEBrick
|
|||
def initialize
|
||||
@timeout_info = Hash.new
|
||||
Thread.start{
|
||||
def (Thread.current).inspect
|
||||
super.sub(/>\z/, ' (WEBrick::Utils::TimeoutHandler)>')
|
||||
end
|
||||
while true
|
||||
now = Time.now
|
||||
@timeout_info.keys.each{|thread|
|
||||
|
|
Loading…
Add table
Reference in a new issue