src/share/vm/services/memReporter.hpp

changeset 7267
417e3b8d04c5
parent 7074
833b0f92429a
child 7535
7ae4e26cb1e0
child 9053
da59531e1fdf
     1.1 --- a/src/share/vm/services/memReporter.hpp	Mon Feb 24 13:29:14 2014 +0100
     1.2 +++ b/src/share/vm/services/memReporter.hpp	Fri Oct 10 19:36:12 2014 +0000
     1.3 @@ -96,20 +96,6 @@
     1.4    size_t                  _class_count;
     1.5  
     1.6   public:
     1.7 -  // Report summary tracking data from global snapshots directly.
     1.8 -  // This constructor is used for final reporting and hs_err reporting.
     1.9 -  MemSummaryReporter(MallocMemorySnapshot* malloc_snapshot,
    1.10 -    VirtualMemorySnapshot* vm_snapshot, outputStream* output,
    1.11 -    size_t class_count = 0, size_t scale = K) :
    1.12 -    MemReporterBase(output, scale),
    1.13 -    _malloc_snapshot(malloc_snapshot),
    1.14 -    _vm_snapshot(vm_snapshot) {
    1.15 -    if (class_count == 0) {
    1.16 -      _class_count = InstanceKlass::number_of_instance_classes();
    1.17 -    } else {
    1.18 -      _class_count = class_count;
    1.19 -    }
    1.20 -  }
    1.21    // This constructor is for normal reporting from a recent baseline.
    1.22    MemSummaryReporter(MemBaseline& baseline, outputStream* output,
    1.23      size_t scale = K) : MemReporterBase(output, scale),

mercurial