summaryrefslogtreecommitdiff
path: root/thread.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-06-17 03:56:29 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-06-17 03:56:29 +0000
commit945ea61cd7a6ee0701e7b337bae5a090afca92e1 (patch)
tree1c9f4ed7138460d21d0cc674fc1555370c18219e /thread.c
parent39a770b7205fe79b50bb8cd370f758e8a82759bf (diff)
* thread.c (ruby_thread_stack_overflow): call rb_exc_raise() on
stack overflows in the signal handler, if sigaltstack is available. On stack overflow (and with sigaltstack), the signal handler is more likely to have room to create an exception object. [ruby-core:23813] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23720 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread.c')
-rw-r--r--thread.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/thread.c b/thread.c
index efe5d02dd5..63706c9800 100644
--- a/thread.c
+++ b/thread.c
@@ -1300,12 +1300,21 @@ rb_threadptr_signal_exit(rb_thread_t *th)
rb_threadptr_raise(th->vm->main_thread, 2, argv);
}
+#if defined(POSIX_SIGNAL) && defined(SIGSEGV) && defined(HAVE_SIGALTSTACK)
+#define USE_SIGALTSTACK
+#endif
+
void
ruby_thread_stack_overflow(rb_thread_t *th)
{
- th->errinfo = sysstack_error;
th->raised_flag = 0;
+#ifdef USE_SIGALTSTACK
+ th->raised_flag = 0;
+ rb_exc_raise(sysstack_error);
+#else
+ th->errinfo = sysstack_error;
TH_JUMP_TAG(th, TAG_RAISE);
+#endif
}
int