1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/socket/lib/socket.rb (Socket.accept_loop): rescue

IO::WaitReadable instead of Errno::EWOULDBLOCK.
  (Socket.udp_server_loop_on): ditto.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24200 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2009-07-19 01:56:50 +00:00
parent 828d7a368a
commit 3d57dfa01b
2 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,9 @@
Sun Jul 19 10:54:56 2009 Tanaka Akira <akr@fsij.org>
* ext/socket/lib/socket.rb (Socket.accept_loop): rescue
IO::WaitReadable instead of Errno::EWOULDBLOCK.
(Socket.udp_server_loop_on): ditto.
Sat Jul 18 23:44:59 2009 NARUSE, Yui <naruse@ruby-lang.org>
* re.c (reg_enc_error): use rb_enc_get to get the encoding of

View file

@ -404,7 +404,7 @@ class Socket
readable.each {|r|
begin
sock, addr = r.accept_nonblock
rescue Errno::EWOULDBLOCK
rescue IO::WaitReadable
next
end
yield sock, addr
@ -567,7 +567,7 @@ class Socket
readable.each {|r|
begin
msg, sender_addrinfo, rflags, *controls = r.recvmsg_nonblock
rescue Errno::EWOULDBLOCK
rescue IO::WaitReadable
next
end
ai = r.local_address