Revert r35622.

It breaks bootstraptest/test_exception.rb:388.

"* thread.c (rb_threadptr_execute_interrupts_common): th->errinfo is"

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35623 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2012-05-11 15:24:27 +00:00
parent 38d3b013b7
commit cc08e95b20
3 changed files with 2 additions and 10 deletions

View file

@ -212,7 +212,7 @@ th = Thread.new do
STDOUT.flush
end
end
Thread.pass until th.stop? # this may stop inside lex_io_gets
Thread.pass while th.running?
Process.kill(:INT, $$)
th.join
EOS