* fhandler_tty.cc (fhandler_pty_master::accept_input): Just use a normal Sleep
or suffer amazing pauses when other tty apps are running. (fhandler_pty_master::process_slave_output): Ditto.
This commit is contained in:
parent
b3cc01b02b
commit
b263d1d8d3
winsup/cygwin
@ -1,3 +1,9 @@
|
|||||||
|
2002-11-26 Christopher Faylor <cgf@redhat.com>
|
||||||
|
|
||||||
|
* fhandler_tty.cc (fhandler_pty_master::accept_input): Just use a
|
||||||
|
normal Sleep or suffer amazing pauses when other tty apps are running.
|
||||||
|
(fhandler_pty_master::process_slave_output): Ditto.
|
||||||
|
|
||||||
2002-11-25 Pierre Humblet <pierre.humblet@ieee.org>
|
2002-11-25 Pierre Humblet <pierre.humblet@ieee.org>
|
||||||
|
|
||||||
* passwd.cc (read_etc_passwd): Never add an entry when starting
|
* passwd.cc (read_etc_passwd): Never add an entry when starting
|
||||||
|
@ -175,7 +175,7 @@ fhandler_pty_master::accept_input ()
|
|||||||
debug_printf ("to_slave pipe is full");
|
debug_printf ("to_slave pipe is full");
|
||||||
SetEvent (input_available_event);
|
SetEvent (input_available_event);
|
||||||
ReleaseMutex (input_mutex);
|
ReleaseMutex (input_mutex);
|
||||||
low_priority_sleep (10);
|
Sleep (10);
|
||||||
rc = WaitForSingleObject (input_mutex, INFINITE);
|
rc = WaitForSingleObject (input_mutex, INFINITE);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -279,7 +279,7 @@ fhandler_pty_master::process_slave_output (char *buf, size_t len, int pktmode_on
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
low_priority_sleep (10);
|
Sleep (10);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ReadFile (handle, outbuf, rlen, &n, NULL) == FALSE)
|
if (ReadFile (handle, outbuf, rlen, &n, NULL) == FALSE)
|
||||||
|
@ -218,12 +218,12 @@ tty_list::allocate_tty (int with_console)
|
|||||||
SetConsoleTitle (buf);
|
SetConsoleTitle (buf);
|
||||||
for (int times = 0; times < 25; times++)
|
for (int times = 0; times < 25; times++)
|
||||||
{
|
{
|
||||||
low_priority_sleep (10);
|
Sleep (10);
|
||||||
if ((console = FindWindow (NULL, buf)))
|
if ((console = FindWindow (NULL, buf)))
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
SetConsoleTitle (oldtitle);
|
SetConsoleTitle (oldtitle);
|
||||||
low_priority_sleep (40);
|
Sleep (40);
|
||||||
ReleaseMutex (title_mutex);
|
ReleaseMutex (title_mutex);
|
||||||
if (console == NULL)
|
if (console == NULL)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user