summaryrefslogtreecommitdiff
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
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
-rw-r--r--ChangeLog22
-rw-r--r--eval.c8
-rw-r--r--ext/-test-/thread_fd_close/depend14
-rw-r--r--ext/-test-/thread_fd_close/extconf.rb2
-rw-r--r--ext/-test-/thread_fd_close/thread_fd_close.c14
-rw-r--r--test/-ext-/thread_fd_close/test_thread_fd_close.rb23
-rw-r--r--thread.c2
-rw-r--r--version.h2
8 files changed, 82 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index d774ec7b04..1b54315d93 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,25 @@
+Fri Jun 30 21:07:56 2017 NAKAMURA Usaku <usa@ruby-lang.org>
+
+ * eval.c (exc_setup_cause): need to unfreeze(=dup) the exception before
+ setting cause if its frozen.
+
+Fri Jun 30 21:07:14 2017 Eric Wong <e@80x24.org>
+
+ 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
+
Fri Jun 30 20:34:49 2017 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
* sample/pty/shl.rb: update sample
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);
diff --git a/ext/-test-/thread_fd_close/depend b/ext/-test-/thread_fd_close/depend
new file mode 100644
index 0000000000..091074309a
--- /dev/null
+++ b/ext/-test-/thread_fd_close/depend
@@ -0,0 +1,14 @@
+# AUTOGENERATED DEPENDENCIES START
+thread_fd_close.o: $(RUBY_EXTCONF_H)
+thread_fd_close.o: $(arch_hdrdir)/ruby/config.h
+thread_fd_close.o: $(hdrdir)/ruby/defines.h
+thread_fd_close.o: $(hdrdir)/ruby/encoding.h
+thread_fd_close.o: $(hdrdir)/ruby/intern.h
+thread_fd_close.o: $(hdrdir)/ruby/io.h
+thread_fd_close.o: $(hdrdir)/ruby/missing.h
+thread_fd_close.o: $(hdrdir)/ruby/oniguruma.h
+thread_fd_close.o: $(hdrdir)/ruby/ruby.h
+thread_fd_close.o: $(hdrdir)/ruby/st.h
+thread_fd_close.o: $(hdrdir)/ruby/subst.h
+thread_fd_close.o: thread_fd_close.c
+# AUTOGENERATED DEPENDENCIES END
diff --git a/ext/-test-/thread_fd_close/extconf.rb b/ext/-test-/thread_fd_close/extconf.rb
new file mode 100644
index 0000000000..0d9694539c
--- /dev/null
+++ b/ext/-test-/thread_fd_close/extconf.rb
@@ -0,0 +1,2 @@
+# frozen_string_literal: true
+create_makefile('-test-/thread_fd_close')
diff --git a/ext/-test-/thread_fd_close/thread_fd_close.c b/ext/-test-/thread_fd_close/thread_fd_close.c
new file mode 100644
index 0000000000..4fd967c5b3
--- /dev/null
+++ b/ext/-test-/thread_fd_close/thread_fd_close.c
@@ -0,0 +1,14 @@
+#include "ruby/ruby.h"
+
+static VALUE
+thread_fd_close(VALUE ign, VALUE fd)
+{
+ rb_thread_fd_close(NUM2INT(fd));
+ return Qnil;
+}
+
+void
+Init_thread_fd_close(void)
+{
+ rb_define_singleton_method(rb_cIO, "thread_fd_close", thread_fd_close, 1);
+}
diff --git a/test/-ext-/thread_fd_close/test_thread_fd_close.rb b/test/-ext-/thread_fd_close/test_thread_fd_close.rb
new file mode 100644
index 0000000000..c83b06d672
--- /dev/null
+++ b/test/-ext-/thread_fd_close/test_thread_fd_close.rb
@@ -0,0 +1,23 @@
+# frozen_string_literal: true
+require 'test/unit'
+require '-test-/thread_fd_close'
+require 'io/wait'
+
+class TestThreadFdClose < Test::Unit::TestCase
+
+ def test_thread_fd_close
+ IO.pipe do |r, w|
+ th = Thread.new do
+ begin
+ r.read(4)
+ ensure
+ w.syswrite('done')
+ end
+ end
+ Thread.pass until th.stop?
+ IO.thread_fd_close(r.fileno)
+ assert_equal 'done', r.read(4)
+ assert_raise(IOError) { th.join }
+ end
+ end
+end
diff --git a/thread.c b/thread.c
index e86ebee1f0..7e504a0865 100644
--- a/thread.c
+++ b/thread.c
@@ -2190,7 +2190,7 @@ rb_notify_fd_close(int fd)
void
rb_thread_fd_close(int fd)
{
- while (rb_notify_fd_close(fd));
+ while (rb_notify_fd_close(fd)) rb_thread_schedule();
}
/*
diff --git a/version.h b/version.h
index d8e9432578..86b0f18019 100644
--- a/version.h
+++ b/version.h
@@ -1,6 +1,6 @@
#define RUBY_VERSION "2.3.5"
#define RUBY_RELEASE_DATE "2017-06-30"
-#define RUBY_PATCHLEVEL 325
+#define RUBY_PATCHLEVEL 326
#define RUBY_RELEASE_YEAR 2017
#define RUBY_RELEASE_MONTH 6