hotspot/src/share/vm/gc/shared/space.cpp
changeset 30870 3050fdcdc60b
parent 30764 fec48bf5a827
child 32606 fdaa30d06ada
--- a/hotspot/src/share/vm/gc/shared/space.cpp	Thu May 21 09:23:46 2015 +0200
+++ b/hotspot/src/share/vm/gc/shared/space.cpp	Thu May 21 09:35:38 2015 +0200
@@ -181,7 +181,8 @@
 
 DirtyCardToOopClosure* Space::new_dcto_cl(ExtendedOopClosure* cl,
                                           CardTableModRefBS::PrecisionStyle precision,
-                                          HeapWord* boundary) {
+                                          HeapWord* boundary,
+                                          bool parallel) {
   return new DirtyCardToOopClosure(this, cl, precision, boundary);
 }
 
@@ -260,7 +261,8 @@
 DirtyCardToOopClosure*
 ContiguousSpace::new_dcto_cl(ExtendedOopClosure* cl,
                              CardTableModRefBS::PrecisionStyle precision,
-                             HeapWord* boundary) {
+                             HeapWord* boundary,
+                             bool parallel) {
   return new ContiguousSpaceDCTOC(this, cl, precision, boundary);
 }