1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

cont.c: fix when FIBER_USE_NATIVE is 0

* cont.c (fiber_store): restore references to next_fib (fix typo)

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47967 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
normal 2014-10-15 23:40:33 +00:00
parent 397271caa3
commit d910af94d5
2 changed files with 9 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Thu Oct 16 08:40:04 2014 Eric Wong <e@80x24.org>
* cont.c (fiber_store): restore references to next_fib (fix typo)
Thu Oct 16 08:26:08 2014 Eric Wong <e@80x24.org>
* cont.c (fiber_store): remove references to nextfib

6
cont.c
View file

@ -1377,11 +1377,15 @@ fiber_store(rb_fiber_t *next_fib, rb_thread_t *th)
/* restored */
fib = th->fiber;
if (fib->cont.argc == -1) rb_exc_raise(fib->cont.value);
if (next_fib->cont.value == Qundef) {
cont_restore_0(&next_fib->cont, &next_fib->cont.value);
rb_bug("rb_fiber_resume: unreachable");
}
return fib->cont.value;
}
else {
VALUE undef = Qundef;
cont_restore_0(&fib->cont, &undef);
cont_restore_0(&next_fib->cont, &undef);
rb_bug("rb_fiber_resume: unreachable");
}
#endif /* FIBER_USE_NATIVE */