From ee189904f0e3e0263adcbcc844947f6ccddfb7ad Mon Sep 17 00:00:00 2001 From: ko1 Date: Tue, 7 Nov 2017 05:12:39 +0000 Subject: rename to rb_ec_set_raised(). * thread.c (rb_threadptr_set_raised): rename to rb_ec_set_raised and accepts `ec` git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60683 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- eval.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'eval.c') diff --git a/eval.c b/eval.c index 49411ddd32..76df7370fb 100644 --- a/eval.c +++ b/eval.c @@ -509,7 +509,7 @@ setup_exception(rb_execution_context_t *ec, int tag, volatile VALUE mesg, VALUE volatile int state = 0; EC_PUSH_TAG(ec); - if (EXEC_TAG() == TAG_NONE && !(state = rb_threadptr_set_raised(rb_ec_thread_ptr(ec)))) { + if (EXEC_TAG() == TAG_NONE && !(state = rb_ec_set_raised(ec))) { VALUE bt = rb_get_backtrace(mesg); if (!NIL_P(bt) || cause == Qundef) { if (OBJ_FROZEN(mesg)) { @@ -568,7 +568,7 @@ setup_exception(rb_execution_context_t *ec, int tag, volatile VALUE mesg, VALUE } } - if (rb_threadptr_set_raised(rb_ec_thread_ptr(ec))) { + if (rb_ec_set_raised(ec)) { fatal: ec->errinfo = exception_error; rb_ec_reset_raised(ec); -- cgit v1.2.3