diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-01-12 04:40:48 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-01-12 04:40:48 +0000 |
| commit | fd73d4583392e70b4e662069322e2dd0834553ff (patch) | |
| tree | 9000645b22d2f7de607ed52f18f50fb493f5d22f /eval.c | |
| parent | 3094ebf3d1137ac3be35c9f2ffbdff9c5dba651d (diff) | |
* eval.c (rb_thread_start_0): must use ruby_longjmp instead of
longjmp.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@21444 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'eval.c')
| -rw-r--r-- | eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -12414,7 +12414,7 @@ rb_thread_start_0(fn, arg, th) th->anchor = ip; thread_insert(th); curr_thread = th; - longjmp((prot_tag = ip->tag)->buf, TAG_THREAD); + ruby_longjmp((prot_tag = ip->tag)->buf, TAG_THREAD); } if (ruby_block) { /* should nail down higher blocks */ |
