# HG changeset patch # User zgu # Date 1567522697 14400 # Tue Sep 03 10:58:17 2019 -0400 # Node ID df218f0b735c7fe2aca6589184bb0186d5dd1dab # Parent 2172fd713350599c2b056a7f2d7d0fa0bbcc84cd 8230483: Shenandoah: Shenandoah assert_correct failed; Object klass pointer should not be NULL diff --git a/src/hotspot/share/gc/shenandoah/shenandoahConcurrentRoots.cpp b/src/hotspot/share/gc/shenandoah/shenandoahConcurrentRoots.cpp --- a/src/hotspot/share/gc/shenandoah/shenandoahConcurrentRoots.cpp +++ b/src/hotspot/share/gc/shenandoah/shenandoahConcurrentRoots.cpp @@ -28,7 +28,7 @@ bool ShenandoahConcurrentRoots::can_do_concurrent_roots() { // Don't support traversal GC at this moment - return !ShenandoahHeap::heap()->is_concurrent_traversal_in_progress(); + return !ShenandoahHeap::heap()->is_traversal_mode(); } bool ShenandoahConcurrentRoots::should_do_concurrent_roots() {