mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
fc4e79e301
* test/ruby/lbtest.rb: needs to join the local barrier. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35180 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
49 lines
628 B
Ruby
49 lines
628 B
Ruby
require 'thread'
|
|
|
|
class LocalBarrier
|
|
def initialize(n)
|
|
@wait = Queue.new
|
|
@done = Queue.new
|
|
@keeper = begin_keeper(n)
|
|
end
|
|
|
|
def sync
|
|
@done.push(true)
|
|
@wait.pop
|
|
end
|
|
|
|
def join
|
|
@keeper.join
|
|
end
|
|
|
|
private
|
|
def begin_keeper(n)
|
|
Thread.start do
|
|
n.times do
|
|
@done.pop
|
|
end
|
|
n.times do
|
|
@wait.push(true)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
n = 10
|
|
|
|
lb = LocalBarrier.new(n)
|
|
|
|
(n - 1).times do |i|
|
|
Thread.start do
|
|
sleep((rand(n) + 1) / 10.0)
|
|
print "#{i}: done\n"
|
|
lb.sync
|
|
print "#{i}: cont\n"
|
|
end
|
|
end
|
|
|
|
lb.sync
|
|
print "#{n-1}: cont\n"
|
|
lb.join
|
|
|
|
print "exit.\n"
|