summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--test/-ext-/old_thread_select/test_old_thread_select.rb15
-rw-r--r--thread.c2
3 files changed, 19 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 2869b80ddf..8f14352430 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Mon Sep 12 20:47:52 2011 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * thread.c (rb_thread_select): fix a typo to initialize efds
+ properly. [Bug #5299] [ruby-core:39380]
+
Mon Sep 12 20:41:20 2011 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
* thread.c (rb_thread_select): fix to ignore an argument
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 18235b845a..1ccdb3414d 100644
--- a/test/-ext-/old_thread_select/test_old_thread_select.rb
+++ b/test/-ext-/old_thread_select/test_old_thread_select.rb
@@ -23,6 +23,17 @@ class TestOldThreadSelect < Test::Unit::TestCase
end
end
+ def test_old_select_error_timeout
+ bug5299 = '[ruby-core:39380]'
+ with_pipe do |r, w|
+ t0 = Time.now
+ rc = IO.old_thread_select(nil, nil, [r.fileno], 0.001)
+ diff = Time.now - t0
+ assert_equal 0, rc, bug5299
+ assert_operator diff, :>=, 0.001, "returned too early"
+ end
+ end
+
def test_old_select_false_positive
bug5306 = '[ruby-core:39435]'
with_pipe do |r2, w2|
@@ -77,7 +88,7 @@ class TestOldThreadSelect < Test::Unit::TestCase
assert_equal 0, rc
assert_equal true, thr.value
assert received, "SIGINT not received"
- ensure
- trap(:INT, "DEFAULT")
+ ensure
+ trap(:INT, "DEFAULT")
end
end
diff --git a/thread.c b/thread.c
index 192b696629..a6d709aaed 100644
--- a/thread.c
+++ b/thread.c
@@ -2726,7 +2726,7 @@ rb_thread_select(int max, fd_set * read, fd_set * write, fd_set * except,
}
if (except) {
efds = &fdsets[2];
- rb_fd_init(wfds);
+ rb_fd_init(efds);
rb_fd_copy(efds, except, max);
}