From 5659d418d91d9757e0c2dc4b95b1f850575cfb5e Mon Sep 17 00:00:00 2001 From: ko1 Date: Fri, 23 Jun 2017 09:43:52 +0000 Subject: move "state" to rb_vm_tag. * vm_core.h (rb_thread_t::tag_state): move to "rb_vm_tag::state". Lifetime of "state" should be same as current tag. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59159 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- cont.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'cont.c') diff --git a/cont.c b/cont.c index 20e87c397b..e5cffce9e0 100644 --- a/cont.c +++ b/cont.c @@ -413,7 +413,6 @@ cont_save_thread(rb_context_t *cont, rb_thread_t *th) sth->local_storage = th->local_storage; sth->safe_level = th->safe_level; sth->raised_flag = th->raised_flag; - sth->tag_state = th->tag_state; sth->status = th->status; sth->tag = th->tag; sth->protect_tag = th->protect_tag; @@ -561,7 +560,6 @@ cont_restore_thread(rb_context_t *cont) th->ec.cfp = sth->ec.cfp; th->safe_level = sth->safe_level; th->raised_flag = sth->raised_flag; - th->tag_state = sth->tag_state; th->status = sth->status; th->tag = sth->tag; th->protect_tag = sth->protect_tag; -- cgit v1.2.3