From 7c031258d9edaccbc7d4aba84c16a26a86c6dacf Mon Sep 17 00:00:00 2001 From: nobu Date: Wed, 12 Apr 2017 14:47:50 +0000 Subject: thread.c: during GC for thread * thread.c (ruby_thread_stack_overflow): check if the given thread is during GC. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58328 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- thread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'thread.c') diff --git a/thread.c b/thread.c index c34565e9a1..a93c6100bf 100644 --- a/thread.c +++ b/thread.c @@ -2171,7 +2171,7 @@ ruby_thread_stack_overflow(rb_thread_t *th) { th->raised_flag = 0; #ifdef USE_SIGALTSTACK - if (!rb_during_gc()) { + if (!rb_threadptr_during_gc(th)) { rb_exc_raise(sysstack_error); } #endif -- cgit v1.2.3