From 2108e55c0b8fd31cec8968868a56876a22f3104c Mon Sep 17 00:00:00 2001 From: ko1 Date: Fri, 23 Jun 2017 07:25:52 +0000 Subject: use "enum ruby_tag_type" and TAG_NONE. Return value of EXEC_TAG() is saved by "int state". Instead of "int", use "enum ruby_tag_type". First EXEC_TAG() value should be 0, so that define TAG_NONE (= 0) and use it. Some code used "status" instead of "state". To make them clear, rename them to state. We can change variable name from "state" to "tag_state", but this ticket doesn't contain it. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59155 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- eval_intern.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'eval_intern.h') diff --git a/eval_intern.h b/eval_intern.h index 399faf3f90..5f9e57152d 100644 --- a/eval_intern.h +++ b/eval_intern.h @@ -160,14 +160,14 @@ LONG WINAPI rb_w32_stack_overflow_handler(struct _EXCEPTION_POINTERS *); static inline int rb_threadptr_tag_state(rb_thread_t *th) { - int state = th->state; + enum ruby_tag_type state = th->state; th->state = 0; return state; } -NORETURN(static inline void rb_threadptr_tag_jump(rb_thread_t *, int)); +NORETURN(static inline void rb_threadptr_tag_jump(rb_thread_t *, enum ruby_tag_type st)); static inline void -rb_threadptr_tag_jump(rb_thread_t *th, int st) +rb_threadptr_tag_jump(rb_thread_t *th, enum ruby_tag_type st) { th->state = st; ruby_longjmp(th->tag->buf, 1); -- cgit v1.2.1