summaryrefslogtreecommitdiff
path: root/eval.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-10-09 10:11:48 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-10-09 10:11:48 +0000
commit8022abdc69b3707db7371ab21a2fdc40d578f614 (patch)
tree3138819d01df140a50911a0150a0c38c888292cb /eval.c
parentdd3eed4f08dd5232b5634f7f444bb8db60e65f60 (diff)
* 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
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/eval.c b/eval.c
index fa0daaa732..033134cb38 100644
--- a/eval.c
+++ b/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;