Revision: 5682 Author: [email protected] Date: Wed Oct 20 23:30:44 2010 Log: Fix compilation on Windows on the 2.4 branch after revert of aggresive garbage collection when close to OOM patch.
[email protected] Review URL: http://codereview.chromium.org/3966003 http://code.google.com/p/v8/source/detail?r=5682 Modified: /branches/2.4/src/heap.cc /branches/2.4/src/version.cc ======================================= --- /branches/2.4/src/heap.cc Wed Oct 20 12:28:30 2010 +++ /branches/2.4/src/heap.cc Wed Oct 20 23:30:44 2010 @@ -691,7 +691,7 @@ UpdateSurvivalRateTrend(start_new_space_size); - int old_gen_size = PromotedSpaceSize(); + intptr_t old_gen_size = PromotedSpaceSize(); old_gen_promotion_limit_ = old_gen_size + Max(kMinimumPromotionLimit, old_gen_size / 3); old_gen_allocation_limit_ = ======================================= --- /branches/2.4/src/version.cc Wed Oct 20 12:30:08 2010 +++ /branches/2.4/src/version.cc Wed Oct 20 23:30:44 2010 @@ -35,7 +35,7 @@ #define MAJOR_VERSION 2 #define MINOR_VERSION 4 #define BUILD_NUMBER 9 -#define PATCH_LEVEL 7 +#define PATCH_LEVEL 8 #define CANDIDATE_VERSION false // Define SONAME to have the SCons build the put a specific SONAME into the -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
