diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2011-05-01 14:35:12 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2011-05-01 14:35:12 +0000 |
commit | 79e741ef6f0882f993e4b0767cc62b6b417f30cd (patch) | |
tree | f5465cbddbd551b0bb6d4699beb96427e76cfc85 /winsup/cygwin/fhandler.h | |
parent | c60d0bbe688ae9ad37e56ab8ba73124e8b6c73b7 (diff) | |
download | cygnal-79e741ef6f0882f993e4b0767cc62b6b417f30cd.tar.gz cygnal-79e741ef6f0882f993e4b0767cc62b6b417f30cd.tar.bz2 cygnal-79e741ef6f0882f993e4b0767cc62b6b417f30cd.zip |
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_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.
Diffstat (limited to 'winsup/cygwin/fhandler.h')
-rw-r--r-- | winsup/cygwin/fhandler.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/winsup/cygwin/fhandler.h b/winsup/cygwin/fhandler.h index 2f513625a..48ec5cec9 100644 --- a/winsup/cygwin/fhandler.h +++ b/winsup/cygwin/fhandler.h @@ -1319,7 +1319,6 @@ class fhandler_windows: public fhandler_base select_record *select_read (select_stuff *); select_record *select_write (select_stuff *); select_record *select_except (select_stuff *); - bool is_slow () {return true;} }; class fhandler_dev_dsp: public fhandler_base |