From 40c2dd156bd983d5f7a6cf85a11b4977f3720fef Mon Sep 17 00:00:00 2001 From: mame Date: Wed, 4 Mar 2009 12:23:37 +0000 Subject: * lib/thread.rb (SizedQueue#push): fix limit condition. [ruby-dev:38135] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22765 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/thread.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/thread.rb') diff --git a/lib/thread.rb b/lib/thread.rb index 68eeaf5b05..e5585c30bd 100644 --- a/lib/thread.rb +++ b/lib/thread.rb @@ -292,7 +292,7 @@ class SizedQueue < Queue t = nil @mutex.synchronize{ while true - break if @que.length <= @max + break if @que.length < @max @queue_wait.push Thread.current @mutex.sleep end -- cgit v1.2.3