mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Fix continuation mark / compact
This commit is contained in:
parent
bbf3de22b6
commit
6147fa82a9
1 changed files with 6 additions and 0 deletions
6
cont.c
6
cont.c
|
@ -847,6 +847,9 @@ cont_compact(void *ptr)
|
|||
{
|
||||
rb_context_t *cont = ptr;
|
||||
|
||||
if (cont->self) {
|
||||
cont->self = rb_gc_location(cont->self);
|
||||
}
|
||||
cont->value = rb_gc_location(cont->value);
|
||||
rb_execution_context_update(&cont->saved_ec);
|
||||
}
|
||||
|
@ -857,6 +860,9 @@ cont_mark(void *ptr)
|
|||
rb_context_t *cont = ptr;
|
||||
|
||||
RUBY_MARK_ENTER("cont");
|
||||
if (cont->self) {
|
||||
rb_gc_mark_movable(cont->self);
|
||||
}
|
||||
rb_gc_mark_movable(cont->value);
|
||||
|
||||
rb_execution_context_mark(&cont->saved_ec);
|
||||
|
|
Loading…
Reference in a new issue