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

Categories

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

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

1 Answer

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...