Add missing ChangeLog entry:

* fhandler.h (fhandler_windows::is_slow): Remove.
This commit is contained in:
Corinna Vinschen 2011-05-01 14:36:17 +00:00
parent 79e741ef6f
commit 5c2be92ec4
1 changed files with 16 additions and 0 deletions

View File

@ -1,3 +1,19 @@
2011-05-01 Corinna Vinschen <corinna@vinschen.de>
Throughout, use user32 UNICODE functions rather than ANSI functions.
* autoload.cc: Convert all definitions for ANSI user32 functions to
definitions for the corresponding UNICODE function.
(SendMessageA): Remove.
(SendNotifyMessageW): Define.
* fhandler.h (fhandler_windows::is_slow): Remove.
* fhandler_windows.cc (fhandler_windows::write): Use SendNotifyMessageW
call rather than SendMessage to make function always return immediately.
(fhandler_windows::read): Make function interruptible and a cancellation
point. Handle O_NONBLOCK.
* select.cc (peek_serial): Don't wait for signal_arrived here.
* window.cc (wininfo::winthread): Call CreateWindowExW directly rather
than CreateWindow wrapper.
2011-05-01 Corinna Vinschen <corinna@vinschen.de>
* net.cc (fdsock): Drop setting uninterruptible_io to true.