From 8327de7c84247eff8e47c1090d9a239b8db1435c Mon Sep 17 00:00:00 2001 From: matz Date: Fri, 21 Feb 2003 18:02:19 +0000 Subject: [PATCH] * eval.c (rb_thread_create): may called from place higher than rb_gc_stack_start. * gc.c (Init_stack): update rb_gc_stack_start if it is lower (or higher if stack grows down) than the previous value. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3527 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/ChangeLog b/ChangeLog index e1aefa7a04..0e52985d09 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +Sat Feb 22 02:45:20 2003 Yukihiro Matsumoto + + * eval.c (rb_thread_create): may called from place higher than + rb_gc_stack_start. + + * gc.c (Init_stack): update rb_gc_stack_start if it is lower (or + higher if stack grows down) than the previous value. + Fri Feb 21 21:03:41 2003 Minero Aoki * lib/fileutils.rb: new method FileUtils#copy_stream.