From 6e76b010c370ff6d0d2e5b8a60a542827917fcbb Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Wed, 26 Jul 2000 13:59:23 +0000 Subject: * fhandler_console.cc (fhandler_console::read): Explicitly set cursor to make it visible while waiting in WaitForMultipleObjects. --- winsup/cygwin/ChangeLog | 5 +++++ winsup/cygwin/fhandler_console.cc | 1 + 2 files changed, 6 insertions(+) (limited to 'winsup/cygwin') diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index b02a0d3f9..74187c329 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,8 @@ +2000-07-26 DJ Delorie + + * fhandler_console.cc (fhandler_console::read): Explicitly set cursor + to make it visible while waiting in WaitForMultipleObjects. + Wed Jul 26 10:59:00 2000 Corinna Vinschen * passwd.cc: Change name of passwd_in_memory_p to passwd_state. diff --git a/winsup/cygwin/fhandler_console.cc b/winsup/cygwin/fhandler_console.cc index 18809c922..8a4ad304b 100644 --- a/winsup/cygwin/fhandler_console.cc +++ b/winsup/cygwin/fhandler_console.cc @@ -145,6 +145,7 @@ fhandler_console::read (void *pv, size_t buflen) if ((bgres = bg_check (SIGTTIN)) <= 0) return bgres; + cursor_rel (0,0); /* to make cursor appear on the screen immediately */ switch (WaitForMultipleObjects (nwait, w4, FALSE, INFINITE)) { case WAIT_OBJECT_0: -- cgit v1.2.3