diff options
author | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-06-06 01:55:09 +0000 |
---|---|---|
committer | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-06-06 01:55:09 +0000 |
commit | 15b31b0d80dd9959873d1db0a76e269a556790ac (patch) | |
tree | 98704c08301f5b36eee8d1ef2d3896ca166b7627 /cont.c | |
parent | a96aacb08cefc3f712c5de29410e16299923b827 (diff) | |
download | ruby-15b31b0d80dd9959873d1db0a76e269a556790ac.tar.gz |
* cont.c (rb_cont_call): forbid calling dead fiber with
Cotinuation#call.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12447 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'cont.c')
-rw-r--r-- | cont.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -344,6 +344,14 @@ rb_cont_call(int argc, VALUE *argv, VALUE contval) if (cont->saved_thread.trap_tag != th->trap_tag) { rb_raise(rb_eRuntimeError, "continuation called across trap"); } + if (cont->saved_thread.fiber) { + rb_context_t *fcont; + GetContPtr(cont->saved_thread.fiber, fcont); + + if (!fcont->alive) { + rb_raise(rb_eRuntimeError, "continuation called dead fiber"); + } + } cont->value = make_passing_arg(argc, argv); |