Skip to content

Commit

Permalink
Try disabling finalization entirely
Browse files Browse the repository at this point in the history
  • Loading branch information
jnthn committed Nov 3, 2021
1 parent 7917743 commit 60ab3bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/callstack.c
Expand Up @@ -732,8 +732,8 @@ MVMFrame * MVM_callstack_unwind_frame(MVMThreadContext *tc, MVMuint8 exceptional
MVM_panic(1, "Unknown call stack record type in unwind");
}
} while (tc->stack_top && !is_bytecode_frame(tc->stack_top->kind));
if (tc->num_finalizing && !exceptional && MVM_gc_finalize_run_handler(tc))
*thunked = 1;
// if (tc->num_finalizing && !exceptional && MVM_gc_finalize_run_handler(tc))
// *thunked = 1;
return tc->stack_top ? MVM_callstack_record_to_frame(tc->stack_top) : NULL;
}

Expand Down

0 comments on commit 60ab3bb

Please sign in to comment.