diff options
Diffstat (limited to 'ChangeLog')
| -rw-r--r-- | ChangeLog | 28 |
1 files changed, 28 insertions, 0 deletions
@@ -1,3 +1,31 @@ +Sat Sep 17 11:24:16 2005 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp> + + * win32/win32.c (rb_w32_select): select for socket didn't work. + this caused deadlock in drb test. this happened because GetFileType + for socket handle returns FILE_TYPE_PIPE. Of course, it's not a + pipe. So socket handle didn't reach winsock's select function. + + * win32/win32.c (rb_w32_select): read for pipe still kept brocking + even if writer handle was closed. + + r,w = IO.pipe + + Thread.new { + sleep 3; puts "------- 1" + w.puts("foo") + sleep 3; puts "------- 2" + w.puts("boo") + sleep 3; puts "------- 3" + w.close + } + + until r.eof? # should break by w.close but didn't. + puts r.gets + end + + * win32/win32.c (rb_w32_select): temprary reverted console support + but it'll be back soon. + Sat Sep 17 10:42:13 2005 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp> * ext/tk/lib/multi-tk.rb: MultiTkIp#eval_string and bg_eval_string |
