From a64801c1e95e127ad47de1d6d8fdb3f3390a9687 Mon Sep 17 00:00:00 2001 From: ko1 Date: Fri, 23 Jun 2017 08:48:41 +0000 Subject: rename th->state to th->tag_state. * vm_core.h (rb_thread_t): rename rb_thread_t::state to tag_state to make it clear. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59158 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- eval_intern.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'eval_intern.h') diff --git a/eval_intern.h b/eval_intern.h index 5f9e57152d..a9b259a52c 100644 --- a/eval_intern.h +++ b/eval_intern.h @@ -156,12 +156,12 @@ LONG WINAPI rb_w32_stack_overflow_handler(struct _EXCEPTION_POINTERS *); # define VAR_NOCLOBBERED(var) var #endif -/* clear th->state, and return the value */ +/* clear th->tag_state, and return the value */ static inline int rb_threadptr_tag_state(rb_thread_t *th) { - enum ruby_tag_type state = th->state; - th->state = 0; + enum ruby_tag_type state = th->tag_state; + th->tag_state = TAG_NONE; return state; } @@ -169,7 +169,7 @@ NORETURN(static inline void rb_threadptr_tag_jump(rb_thread_t *, enum ruby_tag_t static inline void rb_threadptr_tag_jump(rb_thread_t *th, enum ruby_tag_type st) { - th->state = st; + th->tag_state = st; ruby_longjmp(th->tag->buf, 1); } -- cgit v1.2.1