Bug #1460
closedIO#select returns wrong fd list after Kernel#sleep (Windows)
Description
=begin
The following script never ends on Windows XP/Vista:
require 'thread'
a = IO.pipe
puts "pipe: #{a.inspect}"
th = Thread.new do
if res = IO.select([a[0]], [], [], 1)
puts "select ok: #{res.inspect}"
c = a[0].read(1)
puts "read ok: #{c}"
else
puts "timeout"
end
end
puts "sleep"
sleep(1)
puts "done"
The main thread stops at "sleep(1)" and the secondary thread at "c = a[0].read(1)". This is the output I get:
pipe: [#IO:0x2b616f4, #IO:0x2b616cc]
sleep
select ok: #<a href="IO:0x2b616f4" class="external">IO:0x2b616f4</a>], [], [
(ruby freezes here)
The Kernel#sleep call makes IO#select return with the pipe handle, even though it hasn't signaled. Then the call to IO#read blocks because no data is available. I couldn't come up with a workaround because IO#read_nonblock does not work with pipes in Windows (raises "Bad file descriptor" (calling IO#fcntl with O_NONBLOCK is also not possible)).
=end
Updated by nobu (Nobuyoshi Nakada) over 15 years ago
- Status changed from Open to Assigned
- Assignee set to usa (Usaku NAKAMURA)
=begin
Don't use IO.select with pipes. It's a known restriction.
If you really need to it, use 1.8.7.
=end
Updated by usa (Usaku NAKAMURA) over 15 years ago
- Status changed from Assigned to Rejected
=begin
=end