Cygwin: pty: Speed up a little hooked Win32 API for pseudo console.

- Some Win32 APIs are hooked in pty code for pseudo console support.
  This causes slow down. This patch improves speed a little.
This commit is contained in:
Takashi Yano 2019-09-04 10:44:24 +09:00 committed by Corinna Vinschen
parent 9adb260181
commit bddb018e10
1 changed files with 3 additions and 1 deletions

View File

@ -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 (); \