src/share/vm/memory/oopFactory.cpp

changeset 977
9a25e0c45327
parent 953
0af8b0718fc9
child 1014
0fbdb4381b99
     1.1 --- a/src/share/vm/memory/oopFactory.cpp	Fri Jan 30 14:17:52 2009 -0800
     1.2 +++ b/src/share/vm/memory/oopFactory.cpp	Sat Jan 31 00:15:00 2009 -0800
     1.3 @@ -90,9 +90,11 @@
     1.4  }
     1.5  
     1.6  
     1.7 -constantPoolCacheOop oopFactory::new_constantPoolCache(int length, TRAPS) {
     1.8 +constantPoolCacheOop oopFactory::new_constantPoolCache(int length,
     1.9 +                                                       bool is_conc_safe,
    1.10 +                                                       TRAPS) {
    1.11    constantPoolCacheKlass* ck = constantPoolCacheKlass::cast(Universe::constantPoolCacheKlassObj());
    1.12 -  return ck->allocate(length, CHECK_NULL);
    1.13 +  return ck->allocate(length, is_conc_safe, CHECK_NULL);
    1.14  }
    1.15  
    1.16  

mercurial