comparison src/share/vm/gc_implementation/parallelScavenge/pcTasks.hpp @ 3915:c2bf0120ee5d

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: ysr, jmasa
author stefank
date Thu, 01 Sep 2011 16:18:17 +0200
parents 1d1603768966
children eda078b01c65
comparison
equal deleted inserted replaced
3913:27702f012017 3915:c2bf0120ee5d
96 object_synchronizer = 4, 96 object_synchronizer = 4,
97 flat_profiler = 5, 97 flat_profiler = 5,
98 management = 6, 98 management = 6,
99 jvmti = 7, 99 jvmti = 7,
100 system_dictionary = 8, 100 system_dictionary = 8,
101 reference_processing = 9, 101 code_cache = 9
102 code_cache = 10
103 }; 102 };
104 private: 103 private:
105 RootType _root_type; 104 RootType _root_type;
106 public: 105 public:
107 MarkFromRootsTask(RootType value) : _root_type(value) {} 106 MarkFromRootsTask(RootType value) : _root_type(value) {}