summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-05-17 09:14:24 +0000
committeryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-05-17 09:14:24 +0000
commit9d534cba5d184e30ee9d37c8d4bd8455c38a4348 (patch)
tree69243a718274f89580681c5ceb69b60b5d837c04
parent89bf40ee5ef1a1ffc56825c93b4e84454010e64f (diff)
downloadruby-9d534cba5d184e30ee9d37c8d4bd8455c38a4348.tar.gz
ruby-9d534cba5d184e30ee9d37c8d4bd8455c38a4348.tar.xz
ruby-9d534cba5d184e30ee9d37c8d4bd8455c38a4348.zip
* vm.c (Init_VM): removed the definition of Thread#initialize,
which is overwritten in Init_Thread and is never used. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16448 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--vm.c1
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 8a4194738..72718f21c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sat May 17 18:03:52 2008 Yuki Sonoda (Yugui) <yugui@yugui.jp>
+
+ * 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@ruby-lang.org>
* array.c (rb_ary_sort_bang): should not free shared pointer, and set
diff --git a/vm.c b/vm.c
index ca73e4cb5..f29a1e221 100644
--- a/vm.c
+++ b/vm.c
@@ -1771,7 +1771,6 @@ Init_VM(void)
/* ::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());