< prev index next >

src/hotspot/share/compiler/compileBroker.hpp

Print this page

        

*** 348,358 **** } static void disable_compilation_forever() { UseCompiler = false; AlwaysCompileLoopMethods = false; ! Atomic::xchg(jint(shutdown_compilation), &_should_compile_new_jobs); } static bool is_compilation_disabled_forever() { return _should_compile_new_jobs == shutdown_compilation; } --- 348,358 ---- } static void disable_compilation_forever() { UseCompiler = false; AlwaysCompileLoopMethods = false; ! Atomic::xchg(&_should_compile_new_jobs, jint(shutdown_compilation)); } static bool is_compilation_disabled_forever() { return _should_compile_new_jobs == shutdown_compilation; }
< prev index next >