equal
deleted
inserted
replaced
93 // |
93 // |
94 // class JvmtiFramePops - public methods |
94 // class JvmtiFramePops - public methods |
95 // |
95 // |
96 |
96 |
97 JvmtiFramePops::JvmtiFramePops() { |
97 JvmtiFramePops::JvmtiFramePops() { |
98 _pops = new (ResourceObj::C_HEAP) GrowableArray<int> (2, true); |
98 _pops = new (ResourceObj::C_HEAP, mtInternal) GrowableArray<int> (2, true); |
99 } |
99 } |
100 |
100 |
101 JvmtiFramePops::~JvmtiFramePops() { |
101 JvmtiFramePops::~JvmtiFramePops() { |
102 // return memory to c_heap. |
102 // return memory to c_heap. |
103 delete _pops; |
103 delete _pops; |