summaryrefslogtreecommitdiff
path: root/eval.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-03-15 09:09:28 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-03-15 09:09:28 +0000
commitd8f981b972aab02d1432abe1c9cadf0507945e77 (patch)
treef6423e0d2ba1e8d057f18c0cb1b3afb3e83b8562 /eval.c
parent0d3f4a92cf4b6558f19a39d416c08db5e0b64a5f (diff)
2000-03-15
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@642 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/eval.c b/eval.c
index 08e0509b08..60e08f86bd 100644
--- a/eval.c
+++ b/eval.c
@@ -6940,15 +6940,6 @@ rb_thread_join(thread)
return thread;
}
-static VALUE
-rb_thread_s_join(dmy, thread) /* will be removed in 1.4 */
- VALUE dmy;
- VALUE thread;
-{
- rb_warn("Thread::join is obsolete; use Thread#join instead");
- return rb_thread_join(thread);
-}
-
VALUE
rb_thread_current()
{
@@ -7810,7 +7801,6 @@ Init_Thread()
rb_define_singleton_method(rb_cThread, "kill", rb_thread_s_kill, 1);
rb_define_singleton_method(rb_cThread, "exit", rb_thread_exit, 0);
rb_define_singleton_method(rb_cThread, "pass", rb_thread_pass, 0);
- rb_define_singleton_method(rb_cThread, "join", rb_thread_s_join, 1);
rb_define_singleton_method(rb_cThread, "current", rb_thread_current, 0);
rb_define_singleton_method(rb_cThread, "main", rb_thread_main, 0);
rb_define_singleton_method(rb_cThread, "list", rb_thread_list, 0);