mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
3e92b635fb
When you change this to true, you may need to add more tests. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53141 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
50 lines
681 B
Ruby
50 lines
681 B
Ruby
# frozen_string_literal: false
|
|
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) / 100.0)
|
|
print "#{i}: done\n"
|
|
lb.sync
|
|
print "#{i}: cont\n"
|
|
end
|
|
end
|
|
|
|
lb.sync
|
|
print "#{n-1}: cont\n"
|
|
# lb.join # [ruby-dev:30653]
|
|
|
|
print "exit.\n"
|