Mark the current context (not root) in final marking.

parent 8e390ccc
...@@ -993,7 +993,7 @@ incremental_marking_phase(mrb_state *mrb, mrb_gc *gc, size_t limit) ...@@ -993,7 +993,7 @@ incremental_marking_phase(mrb_state *mrb, mrb_gc *gc, size_t limit)
static void static void
final_marking_phase(mrb_state *mrb, mrb_gc *gc) final_marking_phase(mrb_state *mrb, mrb_gc *gc)
{ {
mark_context(mrb, mrb->root_c); mark_context(mrb, mrb->c);
gc_mark_gray_list(mrb, gc); gc_mark_gray_list(mrb, gc);
mrb_assert(gc->gray_list == NULL); mrb_assert(gc->gray_list == NULL);
gc->gray_list = gc->atomic_gray_list; gc->gray_list = gc->atomic_gray_list;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment