src/share/vm/gc_implementation/shared/vmGCOperations.hpp

changeset 1050
c6c601a0f2d6
parent 631
d1605aabd0a1
child 1822
0bfd3fb24150
     1.1 --- a/src/share/vm/gc_implementation/shared/vmGCOperations.hpp	Fri Feb 27 15:30:47 2009 -0800
     1.2 +++ b/src/share/vm/gc_implementation/shared/vmGCOperations.hpp	Mon Mar 02 16:37:04 2009 -0800
     1.3 @@ -112,13 +112,16 @@
     1.4   private:
     1.5    outputStream* _out;
     1.6    bool _full_gc;
     1.7 +  bool _need_prologue;
     1.8   public:
     1.9 -  VM_GC_HeapInspection(outputStream* out, bool request_full_gc) :
    1.10 +  VM_GC_HeapInspection(outputStream* out, bool request_full_gc,
    1.11 +                       bool need_prologue) :
    1.12      VM_GC_Operation(0 /* total collections,      dummy, ignored */,
    1.13                      0 /* total full collections, dummy, ignored */,
    1.14                      request_full_gc) {
    1.15      _out = out;
    1.16      _full_gc = request_full_gc;
    1.17 +    _need_prologue = need_prologue;
    1.18    }
    1.19  
    1.20    ~VM_GC_HeapInspection() {}

mercurial