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.rb23
1 files changed, 14 insertions, 9 deletions
diff --git a/lib/webrick/utils.rb b/lib/webrick/utils.rb
index da6386c96c..dc7ce508ea 100644
--- a/lib/webrick/utils.rb
+++ b/lib/webrick/utils.rb
@@ -154,20 +154,25 @@ module WEBrick
def initialize
@timeout_info = Hash.new
@watcher = Thread.start{
+ to_interrupt = []
while true
now = Time.now
wakeup = nil
- @timeout_info.each {|thread, ary|
- next unless ary
- ary.dup.each{|info|
- time, exception = *info
- if time < now
- interrupt(thread, info.object_id, exception)
- elsif !wakeup || time < wakeup
- wakeup = time
- end
+ to_interrupt.clear
+ TimeoutMutex.synchronize{
+ @timeout_info.each {|thread, ary|
+ next unless ary
+ ary.each{|info|
+ time, exception = *info
+ if time < now
+ to_interrupt.push [thread, info.object_id, exception]
+ elsif !wakeup || time < wakeup
+ wakeup = time
+ end
+ }
}
}
+ to_interrupt.each {|arg| interrupt(*arg)}
if !wakeup
sleep
elsif (wakeup -= now) > 0