From 34e65bee79acae81a97222205630513277a3289b Mon Sep 17 00:00:00 2001 From: usa Date: Tue, 30 Aug 2011 15:07:21 +0000 Subject: * 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/trunk@33130 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/-test-/old_thread_select/old_thread_select.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/-test-') 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"); -- cgit v1.2.3