< prev index next >
src/share/vm/compiler/abstractCompiler.cpp
Print this page
*** 56,65 ****
}
return false;
}
void AbstractCompiler::set_state(int state) {
! // Ensure that ste is only set by one thread at a time
MutexLocker only_one(CompileThread_lock);
_compiler_state = state;
CompileThread_lock->notify_all();
}
--- 56,65 ----
}
return false;
}
void AbstractCompiler::set_state(int state) {
! // Ensure that state is only set by one thread at a time
MutexLocker only_one(CompileThread_lock);
_compiler_state = state;
CompileThread_lock->notify_all();
}
< prev index next >