Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1141)

Unified Diff: src/spaces.cc

Issue 7993003: GC Cleanup + Set max old generation size to 700MB on ia32 and max executable size to 128 MB (on i... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 9 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/spaces.h ('k') | src/spaces-inl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/spaces.cc
===================================================================
--- src/spaces.cc (revision 9396)
+++ src/spaces.cc (working copy)
@@ -766,15 +766,6 @@
}
-bool PagedSpace::EnsureCapacity(int capacity) {
- while (Capacity() < capacity) {
- // Expand the space until it has the required capacity or expansion fails.
- if (!Expand()) return false;
- }
- return true;
-}
-
-
#ifdef DEBUG
void PagedSpace::Print() { }
#endif
« no previous file with comments | « src/spaces.h ('k') | src/spaces-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698