diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-10-03 08:56:50 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-10-03 08:56:50 +0000 |
commit | eccab56e87e0c1734176e429257271c8e6c55228 (patch) | |
tree | 8b107b0266c998b53976f4641ba30229aafd4eb7 /eval.c | |
parent | b2f69fc404b9215c76d3469461fc7209c3aa948b (diff) | |
download | ruby-eccab56e87e0c1734176e429257271c8e6c55228.tar.gz ruby-eccab56e87e0c1734176e429257271c8e6c55228.tar.xz ruby-eccab56e87e0c1734176e429257271c8e6c55228.zip |
matz
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@987 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'eval.c')
-rw-r--r-- | eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -7366,7 +7366,7 @@ rb_thread_join(thread) if (!rb_thread_dead(th)) { if (th == curr_thread) - rb_raise(rb_eThreadError, "recursive join"); + rb_raise(rb_eThreadError, "thread tried to join itself"); if ((th->wait_for & WAIT_JOIN) && th->join == curr_thread) rb_raise(rb_eThreadError, "Thread#join: deadlock - mutual join"); curr_thread->status = THREAD_STOPPED; |