summaryrefslogtreecommitdiff
path: root/eval.c
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-06-30 12:09:10 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-06-30 12:09:10 +0000
commit4757e396d2f8d8f39807cee32ef569e70dea9b15 (patch)
tree7a44c3733fef2b6896b9b7732ec5957b3d21b4f2 /eval.c
parent188ae0dbb13022332db52f65f2c5c6a8e54d77e1 (diff)
merge revision(s) 59030,59031: [Backport #13638]
thread.c: avoid busy looping on rb_thread_fd_close We no longer use it this function, but extensions do, and we need to ensure it continues to work for them. * thread.c (rb_thread_fd_close): schedule other threads in loop * ext/-test-/thread_fd_close/thread_fd_close.c: new file * ext/-test-/thread_fd_close/depend: ditto * ext/-test-/thread_fd_close/extconf.rb: ditto * test/-ext-/thread_fd_close/test_thread_fd_close.rb: new test * properties. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_3@59229 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/eval.c b/eval.c
index 80ea6561c0..23d2638135 100644
--- a/eval.c
+++ b/eval.c
@@ -458,6 +458,8 @@ exc_setup_cause(VALUE exc, VALUE cause)
}
#endif
if (!NIL_P(cause) && cause != exc) {
+ if (OBJ_FROZEN(exc))
+ exc = rb_obj_dup(exc);
rb_ivar_set(exc, id_cause, cause);
}
return exc;
@@ -487,13 +489,13 @@ setup_exception(rb_thread_t *th, int tag, volatile VALUE mesg, VALUE cause)
nocause = 0;
}
if (cause != Qundef) {
- exc_setup_cause(mesg, cause);
+ mesg = exc_setup_cause(mesg, cause);
}
else if (nocause) {
- exc_setup_cause(mesg, Qnil);
+ mesg = exc_setup_cause(mesg, Qnil);
}
else if (!rb_ivar_defined(mesg, id_cause)) {
- exc_setup_cause(mesg, get_thread_errinfo(th));
+ mesg = exc_setup_cause(mesg, get_thread_errinfo(th));
}
file = rb_source_loc(&line);