aboutsummaryrefslogtreecommitdiffstats
path: root/eval.c
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-11-07 04:01:13 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-11-07 04:01:13 +0000
commitf724b2a1cb7be123ef3bb4afa60066600e54c052 (patch)
treec3091e5ca822528494bc36e26ede9b52aa0d9e51 /eval.c
parentf5ff1756d7fc2c75bb553847acfa92120c57ffb5 (diff)
downloadruby-f724b2a1cb7be123ef3bb4afa60066600e54c052.tar.gz
th->ec: rb_threadptr_reset_raised()
* thread.c (rb_threadptr_reset_raised): rename to `rb_ec_reset_raised` and accepts `ec`. * vm_trace.c: the following functions accept `ec` instead of `th` * exec_hooks_body * exec_hooks_precheck * exec_hooks_unprotected * exec_hooks_protected git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60676 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/eval.c b/eval.c
index e810ad78d8..49411ddd32 100644
--- a/eval.c
+++ b/eval.c
@@ -524,7 +524,7 @@ setup_exception(rb_execution_context_t *ec, int tag, volatile VALUE mesg, VALUE
rb_ivar_set(mesg, idBt_locations, at);
set_backtrace(mesg, at);
}
- rb_threadptr_reset_raised(rb_ec_thread_ptr(ec));
+ rb_ec_reset_raised(ec);
}
EC_POP_TAG();
if (state) goto fatal;
@@ -563,7 +563,7 @@ setup_exception(rb_execution_context_t *ec, int tag, volatile VALUE mesg, VALUE
ec->errinfo = mesg;
}
else if (state) {
- rb_threadptr_reset_raised(rb_ec_thread_ptr(ec));
+ rb_ec_reset_raised(ec);
EC_JUMP_TAG(ec, state);
}
}
@@ -571,7 +571,7 @@ setup_exception(rb_execution_context_t *ec, int tag, volatile VALUE mesg, VALUE
if (rb_threadptr_set_raised(rb_ec_thread_ptr(ec))) {
fatal:
ec->errinfo = exception_error;
- rb_threadptr_reset_raised(rb_ec_thread_ptr(ec));
+ rb_ec_reset_raised(ec);
EC_JUMP_TAG(ec, TAG_FATAL);
}