File tree Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change
1
+ Tue May 6 00:54:56 2014 Narihiro Nakamura <authornari@gmail.com>
2
+
3
+ * gc.c (gc_after_sweep): suppress unnecessary expanding heap.
4
+ Tomb heap pages are freed pages here, so expanding heap is
5
+ not required.
6
+
1
7
Mon May 5 02:35:20 2014 Nobuyoshi Nakada <nobu@ruby-lang.org>
2
8
3
9
* ext/openssl/ossl_pkey.c (ossl_pkey_verify): as EVP_VerifyFinal()
Original file line number Diff line number Diff line change @@ -2972,7 +2972,6 @@ gc_after_sweep(rb_objspace_t *objspace)
2972
2972
/* if heap_pages has unused pages, then assign them to increment */
2973
2973
if (heap_pages_increment < heap_tomb -> page_length ) {
2974
2974
heap_pages_increment = heap_tomb -> page_length ;
2975
- heap_pages_expand_sorted (objspace );
2976
2975
}
2977
2976
2978
2977
#if RGENGC_PROFILE > 0
Original file line number Diff line number Diff line change 1
1
#define RUBY_VERSION "2.1.2"
2
- #define RUBY_RELEASE_DATE "2014-05-05 "
3
- #define RUBY_PATCHLEVEL 92
2
+ #define RUBY_RELEASE_DATE "2014-05-06 "
3
+ #define RUBY_PATCHLEVEL 93
4
4
5
5
#define RUBY_RELEASE_YEAR 2014
6
6
#define RUBY_RELEASE_MONTH 5
7
- #define RUBY_RELEASE_DAY 5
7
+ #define RUBY_RELEASE_DAY 6
8
8
9
9
#include "ruby/version.h"
10
10
You can’t perform that action at this time.
0 commit comments