src/share/vm/utilities/intHisto.cpp

changeset 3900
d2a62e0f25eb
parent 2314
f95d63e2154a
child 4153
b9a9ed0f8eeb
     1.1 --- a/src/share/vm/utilities/intHisto.cpp	Wed Jun 27 15:23:36 2012 +0200
     1.2 +++ b/src/share/vm/utilities/intHisto.cpp	Thu Jun 28 17:03:16 2012 -0400
     1.3 @@ -27,7 +27,7 @@
     1.4  
     1.5  IntHistogram::IntHistogram(int est, int max) : _max(max), _tot(0) {
     1.6    assert(0 <= est && est <= max, "Preconditions");
     1.7 -  _elements = new (ResourceObj::C_HEAP) GrowableArray<int>(est, true);
     1.8 +  _elements = new (ResourceObj::C_HEAP, mtInternal) GrowableArray<int>(est, true);
     1.9    guarantee(_elements != NULL, "alloc failure");
    1.10  }
    1.11  

mercurial