summaryrefslogtreecommitdiff
path: root/thread.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-04-12 14:47:50 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-04-12 14:47:50 +0000
commita1caed95cb76fb67c7d22441e052d1114dfc26eb (patch)
treedfc815a8189a05d74b520b36f7c1786e7b5fb20e /thread.c
parent796e9950078c788fd8b6e728f329d4dd3dc0aea0 (diff)
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
Diffstat (limited to 'thread.c')
-rw-r--r--thread.c2
1 files changed, 1 insertions, 1 deletions
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