summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-08-30 20:28:10 +0000
committerkosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-08-30 20:28:10 +0000
commitc8473b46ae096e1e2cc2b377a19f9735ff56c598 (patch)
tree065b031099ac4d8aa67c3fc00b79cde09d32debd
parentb1ab5d1b424de2c493706e56ed192ee5b95d59ea (diff)
merge revision(s) 33130:
* ext/-test-/old_thread_select/old_thread_select.c (old_thread_select): typo. * test/-ext-/old_thread_select/test_old_thread_select.rb (TestOldThreadSelect#test_old_select_signal_safe): use SIGINT instead of SIGUSR1 because the former is general and the latter is platform dependent. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_3@33135 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog10
-rw-r--r--ext/-test-/old_thread_select/old_thread_select.c2
-rw-r--r--test/-ext-/old_thread_select/test_old_thread_select.rb10
3 files changed, 16 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 0ca50800a7..7cbdb5490c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+Wed Aug 31 05:27:59 2011 NAKAMURA Usaku <usa@ruby-lang.org>
+
+ * ext/-test-/old_thread_select/old_thread_select.c (old_thread_select):
+ typo.
+
+ * test/-ext-/old_thread_select/test_old_thread_select.rb
+ (TestOldThreadSelect#test_old_select_signal_safe): use SIGINT instead
+ of SIGUSR1 because the former is general and the latter is platform
+ dependent.
+
Wed Aug 31 05:26:30 2011 NAKAMURA Usaku <usa@ruby-lang.org>
* win32/win32.c, include/ruby/intern.h (rb_w32_fd_copy): implement
diff --git a/ext/-test-/old_thread_select/old_thread_select.c b/ext/-test-/old_thread_select/old_thread_select.c
index 0c9cab58fd..881cb7db9f 100644
--- a/ext/-test-/old_thread_select/old_thread_select.c
+++ b/ext/-test-/old_thread_select/old_thread_select.c
@@ -41,7 +41,7 @@ old_thread_select(VALUE klass, VALUE r, VALUE w, VALUE e, VALUE timeout)
}
rp = array2fdset(&rfds, r, &max);
wp = array2fdset(&wfds, w, &max);
- ep = array2fdset(&efds, w, &max);
+ ep = array2fdset(&efds, e, &max);
rc = rb_thread_select(max, rp, wp, ep, tvp);
if (rc == -1)
rb_sys_fail("rb_wait_for_single_fd");
diff --git a/test/-ext-/old_thread_select/test_old_thread_select.rb b/test/-ext-/old_thread_select/test_old_thread_select.rb
index 886ee70cfa..d965724c83 100644
--- a/test/-ext-/old_thread_select/test_old_thread_select.rb
+++ b/test/-ext-/old_thread_select/test_old_thread_select.rb
@@ -41,12 +41,12 @@ class TestOldThreadSelect < Test::Unit::TestCase
def test_old_select_signal_safe
return unless Process.respond_to?(:kill)
- usr1 = false
- trap(:USR1) { usr1 = true }
+ received = false
+ trap(:INT) { received = true }
main = Thread.current
thr = Thread.new do
Thread.pass until main.stop?
- Process.kill(:USR1, $$)
+ Process.kill(:INT, $$)
true
end
@@ -62,8 +62,8 @@ class TestOldThreadSelect < Test::Unit::TestCase
assert diff >= 1.0, "interrupted or short wait"
assert_equal 0, rc
assert_equal true, thr.value
- assert usr1, "USR1 not received"
+ assert received, "SIGINT not received"
ensure
- trap(:USR1, "DEFAULT")
+ trap(:INT, "DEFAULT")
end
end