From 2af4240fbb4f91dba2acee02e83d5f05627084fd Mon Sep 17 00:00:00 2001 From: nobu Date: Sun, 22 Jun 2014 01:47:14 +0000 Subject: signal.c: no cfunc frame at stack overflow * signal.c (check_stack_overflow): avoid pushing a cfunc frame, trying to fix stack overflow deadlock. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46495 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- signal.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/signal.c b/signal.c index fba6354c6e..1833639352 100644 --- a/signal.c +++ b/signal.c @@ -737,7 +737,8 @@ check_stack_overflow(const uintptr_t addr, const ucontext_t *ctx) /* SP in ucontext is not decremented yet when `push` failed, so * the fault page can be the next. */ if (sp_page == fault_page || sp_page == fault_page + 1) { - ruby_thread_stack_overflow(GET_THREAD()); + rb_thread_t *th = ruby_current_thread; + ruby_thread_stack_overflow(th); } } #else @@ -745,7 +746,7 @@ static void check_stack_overflow(const void *addr) { int ruby_stack_overflowed_p(const rb_thread_t *, const void *); - rb_thread_t *th = GET_THREAD(); + rb_thread_t *th = ruby_current_thread; if (ruby_stack_overflowed_p(th, addr)) { ruby_thread_stack_overflow(th); } -- cgit v1.2.3