aboutsummaryrefslogtreecommitdiffstats
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
commit8a203c8d44d79df4a394012bf71afd6b3ef40577 (patch)
tree4cfcfa161f4e7d11fb293dce52ff59c985934237 /vm_core.h
parentd480f6889ac7d2a04bf65cbc066a8dc82c603e03 (diff)
downloadruby-8a203c8d44d79df4a394012bf71afd6b3ef40577.tar.gz
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;