From f6c102e6a58cfd5f6ab2144e13727a074aef0b46 Mon Sep 17 00:00:00 2001 From: ko1 Date: Tue, 7 Nov 2017 06:09:47 +0000 Subject: th->ec: rb_threadptr_setup_exception * eval.c (rb_threadptr_setup_exception): renamed to rb_ec_setup_exception(). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60692 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 46c7c1872d..582a605f9b 100644 --- a/eval.c +++ b/eval.c @@ -583,10 +583,10 @@ setup_exception(rb_execution_context_t *ec, int tag, volatile VALUE mesg, VALUE /*! \private */ void -rb_threadptr_setup_exception(rb_thread_t *th, VALUE mesg, VALUE cause) +rb_ec_setup_exception(const rb_execution_context_t *ec, VALUE mesg, VALUE cause) { if (cause == Qundef) { - cause = get_ec_errinfo(th->ec); + cause = get_ec_errinfo(ec); } if (cause != mesg) { rb_ivar_set(mesg, id_cause, cause); -- cgit v1.2.3