< prev index next >

src/share/vm/runtime/interfaceSupport.cpp

Print this page
rev 7266 : 8062036: ConcurrentMarkThread::slt may be invoked before ConcurrentMarkThread::makeSurrogateLockerThread causing intermittent crashes
Summary: Suppress gc_alot during VM init, improve error for SLT uninitialized.
Reviewed-by:

*** 85,95 **** if (current_thread->active_handles() == NULL) return; // Short-circuit any possible re-entrant gc-a-lot attempt if (thread->skip_gcalot()) return; ! if (is_init_completed()) { if (++_fullgc_alot_invocation < FullGCALotStart) { return; } --- 85,95 ---- if (current_thread->active_handles() == NULL) return; // Short-circuit any possible re-entrant gc-a-lot attempt if (thread->skip_gcalot()) return; ! if (Threads::is_vm_complete()) { if (++_fullgc_alot_invocation < FullGCALotStart) { return; }
< prev index next >