src/share/vm/compiler/abstractCompiler.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File hotspot Cdiff src/share/vm/compiler/abstractCompiler.cpp

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(); }
src/share/vm/compiler/abstractCompiler.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File