src/share/vm/gc_implementation/parallelScavenge/pcTasks.hpp

Print this page
rev 2652 : 7085906: Replace the permgen allocated sentinelRef with a self-looped end
Summary: Remove the sentinelRef and let the last Reference in a discovered chain point back to itself.
Reviewed-by: TBD1, TBD2

@@ -96,12 +96,11 @@
     object_synchronizer   = 4,
     flat_profiler         = 5,
     management            = 6,
     jvmti                 = 7,
     system_dictionary     = 8,
-    reference_processing  = 9,
-    code_cache            = 10
+    code_cache            = 9
   };
  private:
   RootType _root_type;
  public:
   MarkFromRootsTask(RootType value) : _root_type(value) {}