[PATCH 2/4] Cygwin: pty: Speed up a little hooked Win32 API for pseudo console.

Takashi Yano takashi.yano@nifty.ne.jp
Wed Sep 4 01:45:00 GMT 2019


- Some Win32 APIs are hooked in pty code for pseudo console support.
  This causes slow down. This patch improves speed a little.
---
 winsup/cygwin/fhandler_tty.cc | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/winsup/cygwin/fhandler_tty.cc b/winsup/cygwin/fhandler_tty.cc
index 4dbe96b4a..94ef2f8d4 100644
--- a/winsup/cygwin/fhandler_tty.cc
+++ b/winsup/cygwin/fhandler_tty.cc
@@ -155,7 +155,9 @@ DEF_HOOK (PeekConsoleInputW);
 #define CHK_CONSOLE_ACCESS(h) \
 { \
   DWORD dummy; \
-  if (!isHybrid && GetConsoleMode (h, &dummy)) \
+  if (!isHybrid \
+      && GetFileType (h) == FILE_TYPE_CHAR \
+      && GetConsoleMode (h, &dummy)) \
     { \
       isHybrid = true; \
       set_switch_to_pcon (); \
-- 
2.21.0



More information about the Cygwin-patches mailing list