aboutsummaryrefslogtreecommitdiffstats
path: root/thread.c
diff options
context:
space:
mode:
Diffstat (limited to 'thread.c')
-rw-r--r--thread.c14
1 files changed, 6 insertions, 8 deletions
diff --git a/thread.c b/thread.c
index 642d48f81c..3cbb97dd37 100644
--- a/thread.c
+++ b/thread.c
@@ -2112,14 +2112,12 @@ rb_threadptr_ready(rb_thread_t *th)
rb_threadptr_interrupt(th);
}
-void rb_threadptr_setup_exception(rb_thread_t *th, VALUE mesg, VALUE cause);
-
static VALUE
-rb_threadptr_raise(rb_thread_t *th, int argc, VALUE *argv)
+rb_threadptr_raise(rb_thread_t *target_th, int argc, VALUE *argv)
{
VALUE exc;
- if (rb_threadptr_dead(th)) {
+ if (rb_threadptr_dead(target_th)) {
return Qnil;
}
@@ -2132,13 +2130,13 @@ rb_threadptr_raise(rb_thread_t *th, int argc, VALUE *argv)
/* making an exception object can switch thread,
so we need to check thread deadness again */
- if (rb_threadptr_dead(th)) {
+ if (rb_threadptr_dead(target_th)) {
return Qnil;
}
- rb_threadptr_setup_exception(GET_THREAD(), exc, Qundef);
- rb_threadptr_pending_interrupt_enque(th, exc);
- rb_threadptr_interrupt(th);
+ rb_ec_setup_exception(GET_EC(), exc, Qundef);
+ rb_threadptr_pending_interrupt_enque(target_th, exc);
+ rb_threadptr_interrupt(target_th);
return Qnil;
}