hotspot/src/share/vm/memory/oopFactory.cpp
changeset 2006 f2d2f0f20063
parent 1894 5c343868d071
child 2105 347008ce7984
--- a/hotspot/src/share/vm/memory/oopFactory.cpp	Fri Jan 30 14:17:52 2009 -0800
+++ b/hotspot/src/share/vm/memory/oopFactory.cpp	Sat Jan 31 00:15:00 2009 -0800
@@ -90,9 +90,11 @@
 }
 
 
-constantPoolCacheOop oopFactory::new_constantPoolCache(int length, TRAPS) {
+constantPoolCacheOop oopFactory::new_constantPoolCache(int length,
+                                                       bool is_conc_safe,
+                                                       TRAPS) {
   constantPoolCacheKlass* ck = constantPoolCacheKlass::cast(Universe::constantPoolCacheKlassObj());
-  return ck->allocate(length, CHECK_NULL);
+  return ck->allocate(length, is_conc_safe, CHECK_NULL);
 }