summaryrefslogtreecommitdiff
path: root/thread.c
diff options
context:
space:
mode:
Diffstat (limited to 'thread.c')
-rw-r--r--thread.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/thread.c b/thread.c
index e74cf6d14a..cdba4a2106 100644
--- a/thread.c
+++ b/thread.c
@@ -736,6 +736,10 @@ thread_join(rb_thread_t *target_th, double delay)
rb_thread_t *th = GET_THREAD();
struct join_arg arg;
+ if (th == target_th) {
+ rb_raise(rb_eThreadError, "Target thread must not be current thread");
+ }
+
arg.target = target_th;
arg.waiting = th;
arg.limit = timeofday() + delay;