зеркало из https://github.com/github/ruby.git
* lib/thread.rb (ConditionVariable#broadcast): use Mutex
instead of Thread.exclusive. * lib/monitor.rb (MonitorMixin#mon_exit): unset @mon_owner before calling Mutex#unlock. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11848 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
0fa6a335d1
Коммит
1adef15072
|
@ -1,3 +1,11 @@
|
|||
Sat Feb 24 15:57:19 2007 Shugo Maeda <shugo@ruby-lang.org>
|
||||
|
||||
* lib/thread.rb (ConditionVariable#broadcast): use Mutex
|
||||
instead of Thread.exclusive.
|
||||
|
||||
* lib/monitor.rb (MonitorMixin#mon_exit): unset @mon_owner
|
||||
before calling Mutex#unlock.
|
||||
|
||||
Sat Feb 24 15:51:45 2007 Minero Aoki <aamine@loveruby.net>
|
||||
|
||||
* parse.y (program): remove useless assignment to reduce warning.
|
||||
|
|
|
@ -174,8 +174,8 @@ module MonitorMixin
|
|||
mon_check_owner
|
||||
@mon_count -=1
|
||||
if @mon_count == 0
|
||||
@mon_mutex.unlock
|
||||
@mon_owner = nil
|
||||
@mon_mutex.unlock
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -54,6 +54,7 @@ class ConditionVariable
|
|||
#
|
||||
def initialize
|
||||
@waiters = []
|
||||
@waiters_mutex = Mutex.new
|
||||
end
|
||||
|
||||
#
|
||||
|
@ -62,7 +63,9 @@ class ConditionVariable
|
|||
def wait(mutex)
|
||||
begin
|
||||
# TODO: mutex should not be used
|
||||
@waiters.push(Thread.current)
|
||||
@waiters_mutex.synchronize do
|
||||
@waiters.push(Thread.current)
|
||||
end
|
||||
mutex.sleep
|
||||
end
|
||||
end
|
||||
|
@ -72,7 +75,7 @@ class ConditionVariable
|
|||
#
|
||||
def signal
|
||||
begin
|
||||
t = @waiters.shift
|
||||
t = @waiters_mutex.synchronize { @waiters.shift }
|
||||
t.run if t
|
||||
rescue ThreadError
|
||||
retry
|
||||
|
@ -85,7 +88,7 @@ class ConditionVariable
|
|||
def broadcast
|
||||
# TODO: imcomplete
|
||||
waiters0 = nil
|
||||
Thread.exclusive do
|
||||
@waiters_mutex.synchronize do
|
||||
waiters0 = @waiters.dup
|
||||
@waiters.clear
|
||||
end
|
||||
|
|
|
@ -94,7 +94,9 @@ class TestMonitor < Test::Unit::TestCase
|
|||
assert_equal(true, result1)
|
||||
assert_equal("bar", a)
|
||||
end
|
||||
end
|
||||
|
||||
def _test_timedwait
|
||||
b = "foo"
|
||||
queue2 = Queue.new
|
||||
Thread.start do
|
||||
|
|
Загрузка…
Ссылка в новой задаче