hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/concurrentMarkSweepGeneration.hpp
--- a/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/concurrentMarkSweepGeneration.hpp Tue Sep 28 09:51:37 2010 -0700
+++ b/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/concurrentMarkSweepGeneration.hpp Tue Sep 28 15:56:15 2010 -0700
@@ -537,8 +537,8 @@
// The following array-pair keeps track of mark words
// displaced for accomodating overflow list above.
// This code will likely be revisited under RFE#4922830.
- GrowableArray<oop>* _preserved_oop_stack;
- GrowableArray<markOop>* _preserved_mark_stack;
+ Stack<oop> _preserved_oop_stack;
+ Stack<markOop> _preserved_mark_stack;
int* _hash_seed;