From dd117ea1182cfaa96fa84e60c25452cde075acc4 Mon Sep 17 00:00:00 2001 From: tmm1 Date: Wed, 23 Oct 2013 15:05:22 +0000 Subject: * gc.c: Rename free_min to min_free_slots and free_min_page to max_free_slots. The algorithm for heap growth is: if (swept_slots < min_free_slots) pages++ if (swept_slots > max_free_slots) pages-- git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43399 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 0c1958b77e..4908c6b15a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +Wed Oct 23 23:48:28 2013 Aman Gupta + + * gc.c: Rename free_min to min_free_slots and free_min_page to + max_free_slots. The algorithm for heap growth is: + if (swept_slots < min_free_slots) pages++ + if (swept_slots > max_free_slots) pages-- + Wed Oct 23 22:51:03 2013 Nobuyoshi Nakada * win32/Makefile.sub (config.h): VC 2013 supports C99 mathematics -- cgit v1.2.3