ruby-changes:4955
From: ko1@a...
Date: Sat, 17 May 2008 18:14:42 +0900 (JST)
Subject: [ruby-changes:4955] yugui - Ruby:r16448 (trunk): * vm.c (Init_VM): removed the definition of Thread#initialize,
yugui 2008-05-17 18:14:24 +0900 (Sat, 17 May 2008) New Revision: 16448 Modified files: trunk/ChangeLog trunk/vm.c Log: * vm.c (Init_VM): removed the definition of Thread#initialize, which is overwritten in Init_Thread and is never used. http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/ChangeLog?r1=16448&r2=16447&diff_format=u http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/vm.c?r1=16448&r2=16447&diff_format=u Index: ChangeLog =================================================================== --- ChangeLog (revision 16447) +++ ChangeLog (revision 16448) @@ -1,3 +1,8 @@ +Sat May 17 18:03:52 2008 Yuki Sonoda (Yugui) <yugui@y...> + + * vm.c (Init_VM): removed the definition of Thread#initialize, + which is overwritten in Init_Thread and is never used. + Sat May 17 14:01:50 2008 Nobuyoshi Nakada <nobu@r...> * array.c (rb_ary_sort_bang): should not free shared pointer, and set Index: vm.c =================================================================== --- vm.c (revision 16447) +++ vm.c (revision 16448) @@ -1771,7 +1771,6 @@ /* ::Thread */ rb_cThread = rb_define_class("Thread", rb_cObject); rb_undef_alloc_func(rb_cThread); - rb_define_method(rb_cThread, "initialize", ruby_thread_init, 0); /* ::VM::USAGE_ANALYSIS_* */ rb_define_const(rb_cVM, "USAGE_ANALYSIS_INSN", rb_hash_new()); -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/