summaryrefslogtreecommitdiff
path: root/thread.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
commitb6ecdf5fc8071f66d267c904a9c7888b59fef165 (patch)
treec3091e5ca822528494bc36e26ede9b52aa0d9e51 /thread.c
parentaa07918c3a2c6edb75d46265ae9737ca4cd23c8d (diff)
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 'thread.c')
-rw-r--r--thread.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/thread.c b/thread.c
index 4dcd9eab3b..5084e9789e 100644
--- a/thread.c
+++ b/thread.c
@@ -2177,12 +2177,12 @@ rb_threadptr_set_raised(rb_thread_t *th)
}
int
-rb_threadptr_reset_raised(rb_thread_t *th)
+rb_ec_reset_raised(rb_execution_context_t *ec)
{
- if (!(th->ec->raised_flag & RAISED_EXCEPTION)) {
+ if (!(ec->raised_flag & RAISED_EXCEPTION)) {
return 0;
}
- th->ec->raised_flag &= ~RAISED_EXCEPTION;
+ ec->raised_flag &= ~RAISED_EXCEPTION;
return 1;
}