aboutsummaryrefslogtreecommitdiffstats
path: root/eval.c
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-08-10 04:55:12 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-08-10 04:55:12 +0000
commitb4933f2a66baecf8abe4ecd4020ee7d042c1eea4 (patch)
tree2f9f2f81a57cb986b724d87959260d27de12da54 /eval.c
parent6432c915543db226c276533e21a5c7ef591cbb9a (diff)
downloadruby-b4933f2a66baecf8abe4ecd4020ee7d042c1eea4.tar.gz
rename rb_execution_context_t::stack(_size) to vm_stack(_size).
* vm_core.h: Ruby processes run with two stacks, a machine stack and a VM stack. To make it clear, this fix renames rb_execution_context_t::stack(_size) to vm_stack(_size). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59563 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/eval.c b/eval.c
index 6b31bab995..2b6f7849fd 100644
--- a/eval.c
+++ b/eval.c
@@ -1127,7 +1127,7 @@ previous_frame(rb_thread_t *th)
{
rb_control_frame_t *prev_cfp = RUBY_VM_PREVIOUS_CONTROL_FRAME(th->ec.cfp);
/* check if prev_cfp can be accessible */
- if ((void *)(th->ec.stack + th->ec.stack_size) == (void *)(prev_cfp)) {
+ if ((void *)(th->ec.vm_stack + th->ec.vm_stack_size) == (void *)(prev_cfp)) {
return 0;
}
return prev_cfp;