src/share/vm/gc_implementation/concurrentMarkSweep/concurrentMarkSweepGeneration.hpp

changeset 2191
894b1d7c7e01
parent 2188
8b10f48633dc
child 2243
a7214d79fcf1
     1.1 --- a/src/share/vm/gc_implementation/concurrentMarkSweep/concurrentMarkSweepGeneration.hpp	Tue Sep 28 09:51:37 2010 -0700
     1.2 +++ b/src/share/vm/gc_implementation/concurrentMarkSweep/concurrentMarkSweepGeneration.hpp	Tue Sep 28 15:56:15 2010 -0700
     1.3 @@ -537,8 +537,8 @@
     1.4    // The following array-pair keeps track of mark words
     1.5    // displaced for accomodating overflow list above.
     1.6    // This code will likely be revisited under RFE#4922830.
     1.7 -  GrowableArray<oop>*     _preserved_oop_stack;
     1.8 -  GrowableArray<markOop>* _preserved_mark_stack;
     1.9 +  Stack<oop>     _preserved_oop_stack;
    1.10 +  Stack<markOop> _preserved_mark_stack;
    1.11  
    1.12    int*             _hash_seed;
    1.13  

mercurial