hotspot/src/share/vm/utilities/workgroup.cpp
changeset 27880 afb974a04396
parent 25351 7c198a690050
child 28163 322d55d167be
--- a/hotspot/src/share/vm/utilities/workgroup.cpp	Fri Nov 28 16:33:57 2014 +0100
+++ b/hotspot/src/share/vm/utilities/workgroup.cpp	Mon Dec 01 12:16:15 2014 -0500
@@ -489,7 +489,7 @@
 
 
 SubTasksDone::~SubTasksDone() {
-  if (_tasks != NULL) FREE_C_HEAP_ARRAY(jint, _tasks, mtInternal);
+  if (_tasks != NULL) FREE_C_HEAP_ARRAY(jint, _tasks);
 }
 
 // *** SequentialSubTasksDone
@@ -560,7 +560,7 @@
 
 FreeIdSet::~FreeIdSet() {
   _sets[_index] = NULL;
-  FREE_C_HEAP_ARRAY(int, _ids, mtInternal);
+  FREE_C_HEAP_ARRAY(int, _ids);
 }
 
 void FreeIdSet::set_safepoint(bool b) {