From a5511af685cfbc4047b2a273edb96cfa364e90a1 Mon Sep 17 00:00:00 2001 From: ko1 Date: Sun, 27 Jul 2008 05:59:32 +0000 Subject: * include/ruby/ruby.h: add a type T_DEFERRED. * gc.c: fix deferred finalizer system. finalize processes of T_DATA and T_FILE are executed after gc process. And fix to use BUILTIN_TYPE() instead of seeing flag. * thread.c, vm_core.h: add RUBY_VM_SET_FINALIZER_INTERRUPT() and check intterupt_flag at rb_thread_execute_interrupts(). * thread.c (mutex_mark): fix to mark next_mutex. * vm.c (rb_thread_mark): fix to mark keeping_mutexes. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@18231 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index bdf8e9942..63b3b9f50 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,18 @@ +Sun Jul 27 14:48:37 2008 Koichi Sasada + + * include/ruby/ruby.h: add a type T_DEFERRED. + + * gc.c: fix deferred finalizer system. finalize processes of + T_DATA and T_FILE are executed after gc process. + And fix to use BUILTIN_TYPE() instead of seeing flag. + + * thread.c, vm_core.h: add RUBY_VM_SET_FINALIZER_INTERRUPT() + and check intterupt_flag at rb_thread_execute_interrupts(). + + * thread.c (mutex_mark): fix to mark next_mutex. + + * vm.c (rb_thread_mark): fix to mark keeping_mutexes. + Sun Jul 27 09:15:28 2008 Nobuyoshi Nakada * dln.h (dln_find_exe, dln_find_file): deprecated, use reentrant -- cgit