aboutsummaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-07-15 09:17:22 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-07-15 09:17:22 +0000
commit57331140f6084525a566b93ec6b52ef4870802d0 (patch)
treed6a0cf7b2da68331ea304b78053098287268a756 /ChangeLog
parentad99950263d04c0c47bc65b465d0d136b808a7d1 (diff)
downloadruby-57331140f6084525a566b93ec6b52ef4870802d0.tar.gz
* 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 (bsock_send, s_recvfrom, udp_send, unix_send_io, unix_recv_io): should check readable/writable before blocking calling blocking functions. see [ruby-dev:35446] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18070 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog10
1 files changed, 10 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index f32417811d..17ac0fd9ff 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+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 (bsock_send, s_recvfrom, udp_send, unix_send_io,
+ unix_recv_io): should check readable/writable before blocking calling
+ blocking functions.
+ see [ruby-dev:35446]
+
Tue Jul 15 18:12:02 2008 NAKAMURA Usaku <usa@ruby-lang.org>
* thread_win32.c (ubf_handle): cancel blocking IO if it can (only