summaryrefslogtreecommitdiff
path: root/cont.c
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-06-25 18:47:03 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-06-25 18:47:03 +0000
commit1a49d91fddf47bd791836a20505558c724fa491b (patch)
treed17045e1906b0e6f92d2f9904d01de5debb8f853 /cont.c
parent702e431f1b3741ac3e88d05e450f32b745207f5c (diff)
* cont.c (rb_fiber_s_new): fix to clear rb_thread_t#tag.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12619 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'cont.c')
-rw-r--r--cont.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/cont.c b/cont.c
index 022df065a7..f75ddf1602 100644
--- a/cont.c
+++ b/cont.c
@@ -489,6 +489,7 @@ rb_fiber_s_new(VALUE self)
th->cfp->iseq = 0;
th->cfp->proc = 0;
th->cfp->block_iseq = 0;
+ th->tag = 0;
th->first_proc = rb_block_proc();
@@ -506,10 +507,8 @@ rb_fiber_terminate(rb_context_t *cont)
VALUE value = cont->value;
GetContPtr(cont->prev, prev_cont);
-
cont->alive = Qfalse;
-
if (prev_cont->alive == Qfalse) {
rb_fiber_yield(1, &value, GET_THREAD()->root_fiber);
}