summaryrefslogtreecommitdiff
path: root/gc.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 /gc.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 'gc.c')
-rw-r--r--gc.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/gc.c b/gc.c
index d39d14d709..ce80ccff7f 100644
--- a/gc.c
+++ b/gc.c
@@ -6651,6 +6651,13 @@ rb_during_gc(void)
return during_gc;
}
+int
+rb_threadptr_during_gc(rb_thread_t *th)
+{
+ rb_objspace_t *objspace = rb_objspace_of(th->vm);
+ return during_gc;
+}
+
#if RGENGC_PROFILE >= 2
static const char *type_name(int type, VALUE obj);