Fix wrong critical section label

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67644 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
k0kubun 2019-04-20 07:52:59 +00:00
parent ef73bee811
commit 91faab7f14
1 changed files with 2 additions and 2 deletions

4
mjit.c
View File

@ -117,7 +117,7 @@ mjit_update_references(const rb_iseq_t *iseq)
if (!mjit_enabled)
return;
CRITICAL_SECTION_START(4, "mjit_free_iseq");
CRITICAL_SECTION_START(4, "mjit_update_references");
if (iseq->body->jit_unit) {
iseq->body->jit_unit->iseq = (rb_iseq_t *)rb_gc_new_location((VALUE)iseq->body->jit_unit->iseq);
// We need to invalidate JIT-ed code for the ISeq because it embeds pointer addresses.
@ -134,7 +134,7 @@ mjit_update_references(const rb_iseq_t *iseq)
unit->iseq = (rb_iseq_t *)rb_gc_new_location((VALUE)unit->iseq);
}
}
CRITICAL_SECTION_FINISH(4, "mjit_free_iseq");
CRITICAL_SECTION_FINISH(4, "mjit_update_references");
}
// Iseqs can be garbage collected. This function should call when it