src/hotspot/share/gc/g1/heapRegionManager.cpp
changeset 48969 7eb296a8ce2c
parent 48890 f9884e190f2b
child 51496 bf6b66fa8bdf
--- a/src/hotspot/share/gc/g1/heapRegionManager.cpp	Wed Feb 14 16:58:49 2018 +0800
+++ b/src/hotspot/share/gc/g1/heapRegionManager.cpp	Wed Feb 14 13:29:45 2018 +0100
@@ -242,9 +242,9 @@
       continue;
     }
     guarantee(at(i) != NULL, "Tried to access region %u that has a NULL HeapRegion*", i);
-    bool res = blk->doHeapRegion(at(i));
+    bool res = blk->do_heap_region(at(i));
     if (res) {
-      blk->incomplete();
+      blk->set_incomplete();
       return;
     }
   }
@@ -353,7 +353,7 @@
     if (!hrclaimer->claim_region(index)) {
       continue;
     }
-    bool res = blk->doHeapRegion(r);
+    bool res = blk->do_heap_region(r);
     if (res) {
       return;
     }