aboutsummaryrefslogtreecommitdiffstats
path: root/thread.c
diff options
context:
space:
mode:
Diffstat (limited to 'thread.c')
-rw-r--r--thread.c12
1 files changed, 1 insertions, 11 deletions
diff --git a/thread.c b/thread.c
index 5abe58f549..8d7d67b240 100644
--- a/thread.c
+++ b/thread.c
@@ -76,7 +76,6 @@ void rb_thread_stop_timer_thread(void);
static const VALUE eKillSignal = INT2FIX(0);
static const VALUE eTerminateSignal = INT2FIX(1);
-static const VALUE eReRaiseSignal = INT2FIX(2);
static volatile int system_working = 1;
inline static void
@@ -1247,10 +1246,6 @@ rb_threadptr_execute_interrupts_rec(rb_thread_t *th, int sched_depth)
TH_JUMP_TAG(th, TAG_FATAL);
}
else {
- if (err == eReRaiseSignal) {
- err = rb_threadptr_errinfo(th);
- err = rb_make_exception(NIL_P(err) ? 0 : 1, &err);
- }
rb_exc_raise(err);
}
}
@@ -1317,12 +1312,7 @@ rb_threadptr_raise(rb_thread_t *th, int argc, VALUE *argv)
goto again;
}
- if (argc == 0) {
- exc = eReRaiseSignal;
- }
- else {
- exc = rb_make_exception(argc, argv);
- }
+ exc = rb_make_exception(argc, argv);
th->thrown_errinfo = exc;
rb_threadptr_ready(th);
return Qnil;