git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18071 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2008-07-15 09:26:05 +00:00
Родитель 57331140f6
Коммит a6efdc47f9
1 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -1,11 +1,11 @@
Tue Jul 15 18:14:20 2008 NAKAMURA Usaku <usa@ruby-lang.org>
* ext/socket/socket.c (ruby_connect, s_accept): no need to wrap by
blocking region if checked before readable/writable by select.
* ext/socket/socket.c (ruby_connect, s_accept): check before readable/
writable by select() instead of wrapping in blocking region.
* ext/socket/socket.c (bsock_send, s_recvfrom, udp_send, unix_send_io,
unix_recv_io): should check readable/writable before blocking calling
blocking functions.
unix_recv_io): should check readable/writable before calling blocking
functions.
see [ruby-dev:35446]
Tue Jul 15 18:12:02 2008 NAKAMURA Usaku <usa@ruby-lang.org>