Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
218 views
in Technique[技术] by (71.8m points)

ruby - Timeout not working with IO on Windows

The following code does not time out in Ruby 1.9.3p194 (2012-04-20) [i386-mingw32]:

require 'timeout'
Timeout.timeout(1) { gets }

I expected it to work since Ruby 1.9 uses native threads. Is this intended (or documented) behavior or a bug? In the documentation of Timeout there is no mention of any restriction wrt. blocking IO or whatever.

(According to the comments, this seems to be an issue of the Windows version only.)

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

It was a bug of the current Ruby 1.9.3 for Windows which had already been fixed in trunk. The fix has been backported into 1.9.3: http://bugs.ruby-lang.org/issues/6661.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...