mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Synchronize with simple variable assignment.
If it uses Queue, Mutex#synchronize may suppress the exception caused by th.raise. The case happens when Ruby switches the thread after it pushes :go into q, in `self.unlock rescue nil`. The exception is rescued the `rescue nil`. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36503 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
fbee46fe66
commit
787c12da0b
1 changed files with 3 additions and 4 deletions
|
@ -618,23 +618,22 @@ class TestThread < Test::Unit::TestCase
|
|||
|
||||
def make_control_interrupt_test_thread1 flag
|
||||
r = []
|
||||
q = Queue.new
|
||||
ready_p = false
|
||||
th = Thread.new{
|
||||
begin
|
||||
Thread.control_interrupt(RuntimeError => flag){
|
||||
q << :go
|
||||
begin
|
||||
ready_p = true
|
||||
sleep 0.5
|
||||
rescue
|
||||
r << :c1
|
||||
end
|
||||
}
|
||||
sleep 0.5
|
||||
rescue
|
||||
r << :c2
|
||||
end
|
||||
}
|
||||
q.pop # wait
|
||||
Thread.pass until ready_p
|
||||
th.raise
|
||||
begin
|
||||
th.join
|
||||
|
|
Loading…
Add table
Reference in a new issue