From 7fd91aaabd4d4e9409b7ef3551f0f65ffe542d69 Mon Sep 17 00:00:00 2001 From: ko1 Date: Tue, 25 Dec 2007 04:47:47 +0000 Subject: * thread.c (rb_thread_wait_fd_rw): should check EBADF on select(). git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14658 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- thread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'thread.c') diff --git a/thread.c b/thread.c index 5bf529922..1a1d3661c 100644 --- a/thread.c +++ b/thread.c @@ -1850,7 +1850,7 @@ rb_thread_wait_fd_rw(int fd, int read) rb_fd_term(&set); - if (result < 0 && errno != EBADF) { + if (result < 0) { rb_sys_fail(0); } } -- cgit