From 4552f747159ad3ead5827bd17c006784163a38f2 Mon Sep 17 00:00:00 2001 From: ko1 Date: Thu, 26 Oct 2017 11:02:13 +0000 Subject: introduce EC_*_TAG() instead of TH_*_TAG() * eval_intern.h: introduce EC_*_TAG() macros instead of TH_*_TAG() macros. * TH_PUSH_TAG() -> EC_PUSH_TAG() * TH_POP_TAG() -> EC_POP_TAG() * TH_TMPPOP_TAG() -> EC_TMPPOP_TAG() * TH_REPUSH_TAG() -> EC_REPUSH_TAG() * TH_EXEC_TAG() -> EC_EXEC_TAG() * TH_JUMP_TAG() -> EC_JUMP_TAG() rb_threadptr_tag_state() , rb_ec_tag_jump() also accept `ec` instead of `th`. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60450 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- vm_insnhelper.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'vm_insnhelper.c') diff --git a/vm_insnhelper.c b/vm_insnhelper.c index f3f6d74606..568a8d87f1 100644 --- a/vm_insnhelper.c +++ b/vm_insnhelper.c @@ -43,7 +43,7 @@ threadptr_stack_overflow(rb_thread_t *th, int setup) rb_ivar_set(mesg, idBt_locations, at); } th->ec->errinfo = mesg; - TH_JUMP_TAG(th, TAG_RAISE); + EC_JUMP_TAG(th->ec, TAG_RAISE); } static void @@ -59,7 +59,7 @@ rb_threadptr_stack_overflow(rb_thread_t *th, int crit) if (crit || rb_during_gc()) { th->ec->raised_flag = RAISED_STACKOVERFLOW; th->ec->errinfo = th->vm->special_exceptions[ruby_error_stackfatal]; - TH_JUMP_TAG(th, TAG_RAISE); + EC_JUMP_TAG(th->ec, TAG_RAISE); } #ifdef USE_SIGALTSTACK threadptr_stack_overflow(th, TRUE); -- cgit v1.2.3