Issue #17666 has been updated by nagachika (Tomoyuki Chikanaga).
Hello Samuel,
I have created a backport patch according to your suggestions.
https://github.com/nagachika/ruby/commit/c2697018d4d8cad7ea80ca6aa57f65d76072053c
Are there anything else should be included?
Would you review my patch please?
----------------------------------------
Bug #17666: Thread#join hangs when Fiber.set_scheduler is set
https://bugs.ruby-lang.org/issues/17666#change-92937
* Author: arjunmdas (arjun das)
* Status: Closed
* Priority: Normal
* ruby -v: ruby 3.0.0p0 (2020-12-25 revision 95aff21468) [x86_64-darwin19]
* Backport: 2.7: DONTNEED, 3.0: REQUIRED
----------------------------------------
``` ruby
class MockScheduler
def block(blocker, timeout = nil)
byebug
end
def close
byebug
end
def fiber(&block)
byebug
Fiber.new(blocking: false, &block).tap(&:resume)
end
def io_wait(io, events, timeout)
byebug
end
def kernel_sleep(duration=nil)
byebug
Fiber.yield
end
def process_wait(pid, flags)
byebug
end
def unblock(blocker, fiber)
byebug
end
end
Fiber.set_scheduler(MockScheduler.new)
t1 = Thread.new do
p 'before'
sleep 1
p 'after'
end
t1.join
```
Code hangs at this point.
--
https://bugs.ruby-lang.org/
Unsubscribe: <mailto:ruby-core-request / ruby-lang.org?subject=unsubscribe>
<http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core>