Project

General

Profile

Actions

Bug #19411

closed

GC issue with moved objects

Added by luke-gru (Luke Gruber) about 1 year ago. Updated 4 months ago.

Status:
Closed
Assignee:
-
Target version:
-
[ruby-core:112211]

Description

This crashes:

class Obj
  def initialize
    @obj = 3
  end
end

GC.stress = true
r = Ractor.new do
  obj = receive
  p obj
end
obj = Obj.new
r.send(obj, move: true)
r.take

It only crashes with nested objects, if you remove the ivar set in initialize it works fine. Maybe missing RB_GC_GUARD?

Actions

Also available in: Atom PDF

Like0
Like0Like0Like0