aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-07-15 05:37:50 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-07-15 05:37:50 +0000
commitade91aca9fd5902e33496a1a3fd1994ca66259fe (patch)
tree05b2866fbeae1c870b56562d4a01a05fd1952591
parentf15d0deaaf1ae0b92c539bd823dd2b00afbaf502 (diff)
downloadruby-ade91aca9fd5902e33496a1a3fd1994ca66259fe.tar.gz
* ChangeLog: typo.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32550 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog11
1 files changed, 11 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 744f117e3a..0bd4f59555 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+Fri Jul 15 14:27:53 2011 NAKAMURA Usaku <usa@ruby-lang.org>
+
+ * win32/win32.c, include/ruby/win32.h (rb_w32_io_cancelable_p): renamed
+ from rb_w32_has_cancel_io(). now it takes a parameter as fd to check
+ the fd is console or not, because we cannot cancel console input even
+ if we have cancel_io function.
+
+ * io.c (WAIT_FD_IN_WIN32): call above function instead of the old one,
+ so now we can kill the thread which calls STDIN.gets.
+ the problem was reported by ko1 via IRC.
+
Fri Jul 15 09:10:41 2011 Hiroshi Nakamura <nahi@ruby-lang.org>
* ext/digest/sha2/sha2.c (SHA256_Update, SHA512_Update): avoid Bus