hotspot/src/share/vm/gc_implementation/shared/vmGCOperations.hpp
changeset 2141 e9a644aaff87
parent 670 ddf3e9583f2f
child 5343 95a5c4b89273
--- a/hotspot/src/share/vm/gc_implementation/shared/vmGCOperations.hpp	Fri Feb 27 15:30:47 2009 -0800
+++ b/hotspot/src/share/vm/gc_implementation/shared/vmGCOperations.hpp	Mon Mar 02 16:37:04 2009 -0800
@@ -112,13 +112,16 @@
  private:
   outputStream* _out;
   bool _full_gc;
+  bool _need_prologue;
  public:
-  VM_GC_HeapInspection(outputStream* out, bool request_full_gc) :
+  VM_GC_HeapInspection(outputStream* out, bool request_full_gc,
+                       bool need_prologue) :
     VM_GC_Operation(0 /* total collections,      dummy, ignored */,
                     0 /* total full collections, dummy, ignored */,
                     request_full_gc) {
     _out = out;
     _full_gc = request_full_gc;
+    _need_prologue = need_prologue;
   }
 
   ~VM_GC_HeapInspection() {}