mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Lock the entire active_units loop
The previous fix seems not working. Let me test if this works.
This commit is contained in:
parent
41fafd9dd2
commit
5c2ff88be2
1 changed files with 0 additions and 3 deletions
|
@ -938,7 +938,6 @@ compile_compact_jit_code(char* c_file)
|
|||
bool success = true;
|
||||
CRITICAL_SECTION_START(3, "before active_units list_for_each");
|
||||
list_for_each(&active_units.head, child_unit, unode) {
|
||||
CRITICAL_SECTION_FINISH(3, "after active_units list_for_each");
|
||||
char funcname[MAXPATHLEN];
|
||||
sprint_funcname(funcname, child_unit);
|
||||
|
||||
|
@ -952,8 +951,6 @@ compile_compact_jit_code(char* c_file)
|
|||
if (!iseq_label) iseq_label = sep = "";
|
||||
fprintf(f, "\n/* %s%s%s:%ld */\n", iseq_label, sep, iseq_path, iseq_lineno);
|
||||
success &= mjit_compile(f, child_unit->iseq, funcname, child_unit->id);
|
||||
|
||||
CRITICAL_SECTION_START(3, "before active_units list_for_each");
|
||||
}
|
||||
CRITICAL_SECTION_FINISH(3, "after active_units list_for_each");
|
||||
|
||||
|
|
Loading…
Reference in a new issue