mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* eval.c (rb_thread_start_0): non-volatile should be restored from
volatile. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4731 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
dd3eed4f08
commit
8022abdc69
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
Thu Oct 9 19:11:44 2003 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* eval.c (rb_thread_start_0): non-volatile should be restored from
|
||||
volatile.
|
||||
|
||||
Thu Oct 9 17:43:36 2003 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* eval.c (proc_save_safe_level, proc_get_safe_level,
|
||||
|
|
3
eval.c
3
eval.c
|
@ -9436,11 +9436,12 @@ rb_thread_start_0(fn, arg, th)
|
|||
curr_thread = th;
|
||||
th->result = (*fn)(arg, th);
|
||||
}
|
||||
th = th_save;
|
||||
}
|
||||
else if (TAG_DST()) {
|
||||
th = th_save;
|
||||
th->result = prot_tag->retval;
|
||||
}
|
||||
th = th_save;
|
||||
POP_TAG();
|
||||
status = th->status;
|
||||
|
||||
|
|
Loading…
Reference in a new issue