Actions
Bug #17344
closed`Ractor#shareable?` confused by recursive structures
Description
y = []; x = [y, {}].freeze; y << x; y.freeze
Ractor.shareable?(y) # => false, ok, the `{}` is not frozen
Ractor.shareable?(x) # => false, ok
Ractor.shareable?(y) # => true, not ok!
The error is that we can not mark anything as shareable until the whole tree has been searched successfully. Only when the full traversal is successful, then all visited objects can be marked as shareable. There might be a more clever way, but I couldn't think of one when working on my backport.
Updated by nobu (Nobuyoshi Nakada) almost 4 years ago
- Status changed from Open to Closed
Applied in changeset git|930a135524382ddd80c0608a7593b6cdfceee846.
Fixed Ractor.shareable? on cross-recursive objects [Bug #17344]
Updated by marcandre (Marc-Andre Lafortune) almost 4 years ago
Thanks Nobu.
Same issue was still present with Ractor.make_shareable
, which I fixed in https://github.com/ruby/ruby/pull/3827
Please let me know if I missed something.
Actions
Like0
Like0Like0