Adjust pch_status for --mjit=pause

to let mjit_add_iseq_to_process work
This commit is contained in:
Takashi Kokubun 2022-09-06 18:46:49 -07:00
Родитель f0661bf3a0
Коммит 496bdf01e2
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 6FFC433B12EE23DD
1 изменённых файлов: 2 добавлений и 1 удалений

3
mjit.c
Просмотреть файл

@ -1961,6 +1961,7 @@ mjit_resume(void)
if (rb_respond_to(rb_mMJITCompiler, rb_intern("compile"))) {
// [experimental] defining RubyVM::MJIT.compile allows you to replace JIT
mjit_opts.custom = true;
pch_status = PCH_SUCCESS;
}
else {
// Lazy MJIT boot
@ -2041,7 +2042,7 @@ mjit_finish(bool close_handle_p)
mjit_dump_total_calls();
#endif
if (!mjit_opts.save_temps && getpid() == pch_owner_pid && pch_status != PCH_NOT_READY)
if (!mjit_opts.save_temps && getpid() == pch_owner_pid && pch_status == PCH_SUCCESS && !mjit_opts.custom)
remove_file(pch_file);
xfree(header_file); header_file = NULL;