From 1b517f43165e055e75da4fd46bdf8b8aeb960158 Mon Sep 17 00:00:00 2001 From: ko1 Date: Mon, 5 Feb 2007 12:21:01 +0000 Subject: * eval_thread.c, common.mk: remove eval_thread.c. * yarvcore.c: rename cYarvThread to rb_cThread. * gc.c: remove YARV_* prefix. * gc.h: add an include guard and prototype of rb_gc_set_stack_end(). * inits.c: fix to ANSI prototype style and reorder Init_*(). * io.c (pipe_finalize): TODO: comment out last_status. * process.c, yarvcore.h: fix to use yarv_vm_t#last_status instead of rb_last_status and make last_status_get() to access $?. * yarvcore.c (vm_mark): mark yarv_vm_t#last_status. * ruby.h: add declarations of rb_cISeq and rb_cVM. * thread.c: move eval_thread.c codes to thread.c and remove yarv_* function prefix. * thread.c (thread_start_func_2): use yarv_thread_t#first_func if it is not null. * vm.c: fix copyright year. * yarvcore.c (Init_vm): rename to Init_VM(). git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@11631 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index ec4e9acdc..2334dbcdb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,34 @@ +Mon Feb 5 21:06:50 2007 Koichi Sasada + + * eval_thread.c, common.mk: remove eval_thread.c. + + * yarvcore.c: rename cYarvThread to rb_cThread. + + * gc.c: remove YARV_* prefix. + + * gc.h: add an include guard and prototype of rb_gc_set_stack_end(). + + * inits.c: fix to ANSI prototype style and reorder Init_*(). + + * io.c (pipe_finalize): TODO: comment out last_status. + + * process.c, yarvcore.h: fix to use yarv_vm_t#last_status instead of + rb_last_status and make last_status_get() to access $?. + + * yarvcore.c (vm_mark): mark yarv_vm_t#last_status. + + * ruby.h: add declarations of rb_cISeq and rb_cVM. + + * thread.c: move eval_thread.c codes to thread.c and remove yarv_* + function prefix. + + * thread.c (thread_start_func_2): use yarv_thread_t#first_func if + it is not null. + + * vm.c: fix copyright year. + + * yarvcore.c (Init_vm): rename to Init_VM(). + Mon Feb 5 04:09:48 2007 Yukihiro Matsumoto * eval.c (rb_frame_callee): check if prev_cfp can be accessible. -- cgit