summaryrefslogtreecommitdiff
path: root/gc.c
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-10-29 13:49:45 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-10-29 13:49:45 +0000
commit248d3d54a3ea81aaf319b1926a270e7f889aefbe (patch)
treef0bfcf394abf3412885b0a42fccf8e9cd0cea2af /gc.c
parentcb81d0ecb1f3948bde2e8ac079c7cf78e92db7a7 (diff)
rb_ec_stack_check()
* gc.c (rb_ec_stack_check): renamed from rb_threadptr_stack_check() and it accepts `ec`. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60542 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'gc.c')
-rw-r--r--gc.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/gc.c b/gc.c
index c2b34ef4d1..f0a43d15c1 100644
--- a/gc.c
+++ b/gc.c
@@ -4028,9 +4028,8 @@ ruby_stack_length(VALUE **p)
#endif
#if PREVENT_STACK_OVERFLOW
static int
-stack_check(rb_thread_t *th, int water_mark)
+stack_check(rb_execution_context_t *ec, int water_mark)
{
- rb_execution_context_t *ec = th->ec;
int ret;
SET_STACK_END;
ret = STACK_LENGTH > STACK_LEVEL_MAX - water_mark;
@@ -4043,21 +4042,21 @@ stack_check(rb_thread_t *th, int water_mark)
return ret;
}
#else
-#define stack_check(th, water_mark) FALSE
+#define stack_check(ec, water_mark) FALSE
#endif
#define STACKFRAME_FOR_CALL_CFUNC 838
int
-rb_threadptr_stack_check(rb_thread_t *th)
+rb_ec_stack_check(rb_execution_context_t *ec)
{
- return stack_check(th, STACKFRAME_FOR_CALL_CFUNC);
+ return stack_check(ec, STACKFRAME_FOR_CALL_CFUNC);
}
int
ruby_stack_check(void)
{
- return stack_check(GET_THREAD(), STACKFRAME_FOR_CALL_CFUNC);
+ return stack_check(GET_EC(), STACKFRAME_FOR_CALL_CFUNC);
}
ATTRIBUTE_NO_ADDRESS_SAFETY_ANALYSIS