-
-
Save toretore/d4a2bc15d954765e1e66 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
w_r, w_w = IO.pipe | |
t_r, t_w = IO.pipe | |
work = Thread.new { block.call; w_w.write('.') } | |
timeout = Thread.new{ sleep 10; t_w.write('.') } | |
io = IO.select [w_r, t_r] | |
if io == t_r | |
#Timeout | |
else | |
#No timeout | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment