summaryrefslogtreecommitdiffstats
path: root/thread.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-11-27 06:05:07 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-11-27 06:05:07 +0000
commitf51c6772482ebd7883b8c977cf5e3a555f961b76 (patch)
tree67f6170252317e0ed1234217f5fb1a80c2592264 /thread.c
parent6f76d82366615f039de1084bdc2e6aece19692d3 (diff)
downloadruby-f51c6772482ebd7883b8c977cf5e3a555f961b76.tar.gz
ruby-f51c6772482ebd7883b8c977cf5e3a555f961b76.tar.xz
ruby-f51c6772482ebd7883b8c977cf5e3a555f961b76.zip
* gc.c (ruby_stack_check): no check if using sigaltstack.
* signal.c (register_sigaltstack): minimum size is insufficient for method calls. * signal.c (sigsegv): handles stack overflow if possible. * thread.c (ruby_thread_stack_overflow): helper function to raise sysstack_error. * thread_pthread.c (ruby_stack_overflowed_p): checks for stack overflow. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20372 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread.c')
-rw-r--r--thread.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/thread.c b/thread.c
index b9f7a28cd..25cdde28c 100644
--- a/thread.c
+++ b/thread.c
@@ -1184,6 +1184,14 @@ rb_thread_signal_exit(void *thptr)
rb_thread_raise(2, argv, th->vm->main_thread);
}
+void
+ruby_thread_stack_overflow(rb_thread_t *th)
+{
+ th->errinfo = sysstack_error;
+ th->raised_flag = 0;
+ TH_JUMP_TAG(th, TAG_RAISE);
+}
+
int
rb_thread_set_raised(rb_thread_t *th)
{