summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--eval_intern.h2
-rw-r--r--gc.c11
-rw-r--r--vm_eval.c2
3 files changed, 7 insertions, 8 deletions
diff --git a/eval_intern.h b/eval_intern.h
index f6c033e5fb..d221eca5b7 100644
--- a/eval_intern.h
+++ b/eval_intern.h
@@ -286,7 +286,7 @@ int rb_threadptr_reset_raised(rb_thread_t *th);
#define rb_thread_raised_reset(th, f) ((th)->ec->raised_flag &= ~(f))
#define rb_thread_raised_p(th, f) (((th)->ec->raised_flag & (f)) != 0)
#define rb_thread_raised_clear(th) ((th)->ec->raised_flag = 0)
-int rb_threadptr_stack_check(rb_thread_t *th);
+int rb_ec_stack_check(rb_execution_context_t *ec);
VALUE rb_f_eval(int argc, const VALUE *argv, VALUE self);
VALUE rb_make_exception(int argc, const VALUE *argv);
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
diff --git a/vm_eval.c b/vm_eval.c
index 4d4ac4dc02..121a3ca083 100644
--- a/vm_eval.c
+++ b/vm_eval.c
@@ -257,7 +257,7 @@ stack_check(rb_execution_context_t *ec)
rb_thread_t *th = rb_ec_thread_ptr(ec);
if (!rb_thread_raised_p(th, RAISED_STACKOVERFLOW) &&
- rb_threadptr_stack_check(th)) {
+ rb_ec_stack_check(ec)) {
rb_thread_raised_set(th, RAISED_STACKOVERFLOW);
rb_ec_stack_overflow(th->ec, FALSE);
}