We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5a9c92 commit 531c56eCopy full SHA for 531c56e
src/hotspot/share/gc/shenandoah/shenandoahRootVerifier.cpp
@@ -36,7 +36,6 @@
36
#include "gc/shenandoah/shenandoahUtils.hpp"
37
#include "gc/shared/oopStorage.inline.hpp"
38
#include "gc/shared/oopStorageSet.hpp"
39
-#include "gc/shared/weakProcessor.inline.hpp"
40
#include "runtime/thread.hpp"
41
#include "utilities/debug.hpp"
42
@@ -100,8 +99,8 @@ void ShenandoahRootVerifier::oops_do(OopClosure* oops) {
100
99
101
if (verify(WeakRoots)) {
102
shenandoah_assert_safepoint();
103
- AlwaysTrueClosure always_true;
104
- WeakProcessor::weak_oops_do(&always_true, oops);
+ serial_weak_roots_do(oops);
+ concurrent_weak_roots_do(oops);
105
} else if (verify(SerialWeakRoots)) {
106
107
serial_weak_roots_do(oops);
0 commit comments