* eval.c (rb_thread_start_0): restore prot_tag before rewinding.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7964 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
9c560ca864
commit
8b8973761c
@ -1,6 +1,10 @@
|
|||||||
|
Sun Feb 13 23:12:47 2005 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* eval.c (rb_thread_start_0): restore prot_tag before rewinding.
|
||||||
|
|
||||||
Sun Feb 13 16:56:52 2005 GOTOU Yuuzou <gotoyuzo@notwork.org>
|
Sun Feb 13 16:56:52 2005 GOTOU Yuuzou <gotoyuzo@notwork.org>
|
||||||
|
|
||||||
* lib/webrick/cgi.rb (WEBrick::CGI.start): should set reason-phrase
|
* lib/webrick/cgi.rb (WEBrick::CGI.start): should set reason-phrase
|
||||||
to the value of status header field. ([ruby-dev:40617])
|
to the value of status header field. ([ruby-dev:40617])
|
||||||
|
|
||||||
Sun Feb 13 11:38:40 2005 Kazuo Saito <ksaito@uranus.dti.ne.jp>
|
Sun Feb 13 11:38:40 2005 Kazuo Saito <ksaito@uranus.dti.ne.jp>
|
||||||
|
2
eval.c
2
eval.c
@ -11652,7 +11652,7 @@ rb_thread_start_0(fn, arg, th)
|
|||||||
new_thread.proc = rb_block_proc();
|
new_thread.proc = rb_block_proc();
|
||||||
new_thread.arg = (VALUE)arg;
|
new_thread.arg = (VALUE)arg;
|
||||||
th->anchor = ip;
|
th->anchor = ip;
|
||||||
longjmp(ip->tag->buf, TAG_THREAD);
|
longjmp((prot_tag = ip->tag)->buf, TAG_THREAD);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ruby_block) { /* should nail down higher blocks */
|
if (ruby_block) { /* should nail down higher blocks */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user