Fix some fotgotten variable names.
authorantonm@chromium.org <antonm@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Wed, 3 Nov 2010 13:29:01 +0000 (13:29 +0000)
committerantonm@chromium.org <antonm@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Wed, 3 Nov 2010 13:29:01 +0000 (13:29 +0000)
TBR=vegorov@chromium.org

Review URL: http://codereview.chromium.org/4378001

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@5762 ce2b1a6d-e550-0410-aec6-3dcde31c8c00

src/global-handles.cc

index a9caf59..5339840 100644 (file)
@@ -379,7 +379,7 @@ bool GlobalHandles::PostGarbageCollectionProcessing() {
   // At the same time deallocate all DESTROYED nodes.
   ASSERT(Heap::gc_state() == Heap::NOT_IN_GC);
   const int initial_post_gc_processing_count = ++post_gc_processing_count;
-  bool next_gc_could_collect_more = false;
+  bool next_gc_likely_to_collect_more = false;
   Node** p = &head_;
   while (*p != NULL) {
     if ((*p)->PostGarbageCollectionProcessing()) {
@@ -400,7 +400,7 @@ bool GlobalHandles::PostGarbageCollectionProcessing() {
       }
       node->set_next_free(first_deallocated());
       set_first_deallocated(node);
-      next_gc_could_collect_more = true;
+      next_gc_likely_to_collect_more = true;
     } else {
       p = (*p)->next_addr();
     }
@@ -410,7 +410,7 @@ bool GlobalHandles::PostGarbageCollectionProcessing() {
     first_deallocated()->set_next(head());
   }
 
-  return next_gc_could_collect_more;
+  return next_gc_likely_to_collect_more;
 }