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 --- thread.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'thread.c') diff --git a/thread.c b/thread.c index 5084e9789e..642d48f81c 100644 --- a/thread.c +++ b/thread.c @@ -2167,12 +2167,12 @@ rb_threadptr_signal_exit(rb_thread_t *th) #endif int -rb_threadptr_set_raised(rb_thread_t *th) +rb_ec_set_raised(rb_execution_context_t *ec) { - if (th->ec->raised_flag & RAISED_EXCEPTION) { + if (ec->raised_flag & RAISED_EXCEPTION) { return 1; } - th->ec->raised_flag |= RAISED_EXCEPTION; + ec->raised_flag |= RAISED_EXCEPTION; return 0; } -- cgit v1.2.3