aboutsummaryrefslogtreecommitdiffstats
path: root/cont.c
diff options
context:
space:
mode:
Diffstat (limited to 'cont.c')
-rw-r--r--cont.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cont.c b/cont.c
index 211428620a..20e87c397b 100644
--- a/cont.c
+++ b/cont.c
@@ -413,7 +413,7 @@ 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->state = th->state;
+ sth->tag_state = th->tag_state;
sth->status = th->status;
sth->tag = th->tag;
sth->protect_tag = th->protect_tag;
@@ -561,7 +561,7 @@ 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->state = sth->state;
+ th->tag_state = sth->tag_state;
th->status = sth->status;
th->tag = sth->tag;
th->protect_tag = sth->protect_tag;