Revision: 5762 Author: [email protected] Date: Wed Nov 3 06:29:01 2010 Log: Fix some fotgotten variable names.
[email protected] Review URL: http://codereview.chromium.org/4378001 http://code.google.com/p/v8/source/detail?r=5762 Modified: /branches/bleeding_edge/src/global-handles.cc ======================================= --- /branches/bleeding_edge/src/global-handles.cc Wed Nov 3 06:00:28 2010 +++ /branches/bleeding_edge/src/global-handles.cc Wed Nov 3 06:29:01 2010 @@ -379,7 +379,7 @@ // 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 @@ } 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 @@ first_deallocated()->set_next(head()); } - return next_gc_could_collect_more; + return next_gc_likely_to_collect_more; } -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
