* fhandler_console.cc (fhandler_console::read): Explicitly set cursor to make
it visible while waiting in WaitForMultipleObjects.
This commit is contained in:
parent
f653e4ddc1
commit
6e76b010c3
|
@ -1,3 +1,8 @@
|
||||||
|
2000-07-26 DJ Delorie <dj@cygnus.com>
|
||||||
|
|
||||||
|
* 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 <corinna@vinschen.de>
|
Wed Jul 26 10:59:00 2000 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* passwd.cc: Change name of passwd_in_memory_p to passwd_state.
|
* passwd.cc: Change name of passwd_in_memory_p to passwd_state.
|
||||||
|
|
|
@ -145,6 +145,7 @@ fhandler_console::read (void *pv, size_t buflen)
|
||||||
if ((bgres = bg_check (SIGTTIN)) <= 0)
|
if ((bgres = bg_check (SIGTTIN)) <= 0)
|
||||||
return bgres;
|
return bgres;
|
||||||
|
|
||||||
|
cursor_rel (0,0); /* to make cursor appear on the screen immediately */
|
||||||
switch (WaitForMultipleObjects (nwait, w4, FALSE, INFINITE))
|
switch (WaitForMultipleObjects (nwait, w4, FALSE, INFINITE))
|
||||||
{
|
{
|
||||||
case WAIT_OBJECT_0:
|
case WAIT_OBJECT_0:
|
||||||
|
|
Loading…
Reference in New Issue