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 | |
| 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
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | eval.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Mon Jan 12 13:41:33 2009 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * eval.c (rb_thread_start_0): must use ruby_longjmp instead of + longjmp. + Sun Jan 11 20:19:38 2009 Masatoshi SEKI <m_seki@mva.biglobe.ne.jp> * lib/erb.rb (PercentScanner): remove PercentScanner. fixed % after @@ -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 */ |
