< prev index next >

src/share/vm/memory/sharedHeap.hpp

Print this page
rev 7525 : [mq]: noremset

*** 112,125 **** // There should be only a single instance of "SharedHeap" in a program. // This is enforced with the protected constructor below, which will also // set the static pointer "_sh" to that instance. static SharedHeap* _sh; - // and the Gen Remembered Set, at least one good enough to scan the perm - // gen. - GenRemSet* _rem_set; - // A gc policy, controls global gc resource issues CollectorPolicy *_collector_policy; // See the discussion below, in the specification of the reader function // for this variable. --- 112,121 ----
*** 150,163 **** virtual void post_initialize(); // Initialization of ("weak") reference processing support virtual void ref_processing_init(); - // This function returns the "GenRemSet" object that allows us to scan - // generations in a fully generational heap. - GenRemSet* rem_set() { return _rem_set; } - // Iteration functions. void oop_iterate(ExtendedOopClosure* cl) = 0; // Iterate over all spaces in use in the heap, in an undefined order. virtual void space_iterate(SpaceClosure* cl) = 0; --- 146,155 ----
< prev index next >