From 6e19585ac7dc38810a39f597413279afc1c92bf0 Mon Sep 17 00:00:00 2001 From: ko1 Date: Wed, 29 May 2013 15:10:28 +0000 Subject: * gc.c (gc_profile_enable): rest_sweep() to finish last GC. Profiling record is allocated at first of marking phase. Enable at lazy sweeping may cause an error (SEGV). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40984 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 6 ++++++ gc.c | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index ce20c87a96..5590359073 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Thu May 30 00:08:14 2013 Koichi Sasada + + * gc.c (gc_profile_enable): rest_sweep() to finish last GC. + Profiling record is allocated at first of marking phase. + Enable at lazy sweeping may cause an error (SEGV). + Wed May 29 10:33:27 2013 Koichi Sasada * hash.c: fix WB bug. diff --git a/gc.c b/gc.c index 6b52f82f3f..f3fb37207b 100644 --- a/gc.c +++ b/gc.c @@ -142,7 +142,7 @@ static ruby_gc_params_t initial_params = { #endif #ifndef GC_PROFILE_MORE_DETAIL -#define GC_PROFILE_MORE_DETAIL 0 +#define GC_PROFILE_MORE_DETAIL 1 #endif #ifndef GC_ENABLE_LAZY_SWEEP #define GC_ENABLE_LAZY_SWEEP 1 @@ -5254,7 +5254,7 @@ static VALUE gc_profile_enable(void) { rb_objspace_t *objspace = &rb_objspace; - + rest_sweep(objspace); objspace->profile.run = TRUE; return Qnil; } -- cgit v1.2.3