From 3d2de45d264b0b82c4ba72ce54600361e38aaba5 Mon Sep 17 00:00:00 2001 From: wanabe Date: Mon, 2 Nov 2009 09:35:43 +0000 Subject: * cont.c (fiber_free): don't free unallocated local_storage. see #1325. * cont.c (cont_init): clear local_storage not to use current thread's. * cont.c (fiber_t_alloc, root_fiber_alloc): link itself always for a case that fiber_link_remove() is called before fiber_link_join(). * cont.c (fiber_init): clear cont->vm_stack and th->stack before root_fiber_alloc() in rb_fiber_current(). git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25631 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 8ef34a5d9..efc2edf0a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,15 @@ +Mon Nov 2 18:33:21 2009 wanabe + + * cont.c (fiber_free): don't free unallocated local_storage. see #1325. + + * cont.c (cont_init): clear local_storage not to use current thread's. + + * cont.c (fiber_t_alloc, root_fiber_alloc): link itself always for + a case that fiber_link_remove() is called before fiber_link_join(). + + * cont.c (fiber_init): clear cont->vm_stack and th->stack before + root_fiber_alloc() in rb_fiber_current(). + Mon Nov 2 14:52:53 2009 Nobuyoshi Nakada * eval.c (rb_exc_raise, rb_exc_fatal, rb_make_exception): -- cgit