summaryrefslogtreecommitdiff
path: root/vm_core.h
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-06-23 08:48:41 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-06-23 08:48:41 +0000
commita64801c1e95e127ad47de1d6d8fdb3f3390a9687 (patch)
tree4cfcfa161f4e7d11fb293dce52ff59c985934237 /vm_core.h
parenta90c696b8bb67eecc5b415d58f55705c0bf3f8f8 (diff)
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
Diffstat (limited to 'vm_core.h')
-rw-r--r--vm_core.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm_core.h b/vm_core.h
index 29cc836164..6c1b9665c9 100644
--- a/vm_core.h
+++ b/vm_core.h
@@ -744,7 +744,7 @@ typedef struct rb_thread_struct {
VALUE last_status; /* $? */
/* passing state */
- enum ruby_tag_type state;
+ enum ruby_tag_type tag_state;
/* for rb_iterate */
VALUE passed_block_handler;