Cygwin: pty: Revise code waiting for forwarding by master_fwd_thread.
- Though this rarely happens, sometimes the first printing of non- cygwin process does not displayed correctly. To fix this issue, the code for waiting for forwarding by master_fwd_thread is revised.
This commit is contained in:
parent
5377a84776
commit
6cc299f0e2
|
@ -648,7 +648,7 @@ fhandler_pty_master::process_slave_output (char *buf, size_t len, int pktmode_on
|
||||||
/* If echo pipe has data (something has been typed or pasted), prefer
|
/* If echo pipe has data (something has been typed or pasted), prefer
|
||||||
it over slave output. */
|
it over slave output. */
|
||||||
if (echo_cnt > 0)
|
if (echo_cnt > 0)
|
||||||
{
|
{
|
||||||
if (!ReadFile (echo_r, outbuf, rlen, &n, NULL))
|
if (!ReadFile (echo_r, outbuf, rlen, &n, NULL))
|
||||||
{
|
{
|
||||||
termios_printf ("ReadFile on echo pipe failed, %E");
|
termios_printf ("ReadFile on echo pipe failed, %E");
|
||||||
|
@ -1109,7 +1109,7 @@ skip_console_setting:
|
||||||
}
|
}
|
||||||
else if ((fd == 1 || fd == 2) && !get_ttyp ()->switch_to_pcon_out)
|
else if ((fd == 1 || fd == 2) && !get_ttyp ()->switch_to_pcon_out)
|
||||||
{
|
{
|
||||||
Sleep (20);
|
cygwait (get_ttyp ()->fwd_done, INFINITE);
|
||||||
if (get_ttyp ()->pcon_pid == 0 ||
|
if (get_ttyp ()->pcon_pid == 0 ||
|
||||||
kill (get_ttyp ()->pcon_pid, 0) != 0)
|
kill (get_ttyp ()->pcon_pid, 0) != 0)
|
||||||
get_ttyp ()->pcon_pid = myself->pid;
|
get_ttyp ()->pcon_pid = myself->pid;
|
||||||
|
@ -1151,7 +1151,8 @@ fhandler_pty_slave::reset_switch_to_pcon (void)
|
||||||
SetConsoleMode (get_handle (), mode & ~ENABLE_ECHO_INPUT);
|
SetConsoleMode (get_handle (), mode & ~ENABLE_ECHO_INPUT);
|
||||||
}
|
}
|
||||||
if (get_ttyp ()->switch_to_pcon_out)
|
if (get_ttyp ()->switch_to_pcon_out)
|
||||||
Sleep (20); /* Wait for pty_master_fwd_thread() */
|
/* Wait for pty_master_fwd_thread() */
|
||||||
|
cygwait (get_ttyp ()->fwd_done, INFINITE);
|
||||||
get_ttyp ()->pcon_pid = 0;
|
get_ttyp ()->pcon_pid = 0;
|
||||||
get_ttyp ()->switch_to_pcon_in = false;
|
get_ttyp ()->switch_to_pcon_in = false;
|
||||||
get_ttyp ()->switch_to_pcon_out = false;
|
get_ttyp ()->switch_to_pcon_out = false;
|
||||||
|
@ -2202,6 +2203,8 @@ fhandler_pty_master::close ()
|
||||||
}
|
}
|
||||||
release_output_mutex ();
|
release_output_mutex ();
|
||||||
master_fwd_thread->terminate_thread ();
|
master_fwd_thread->terminate_thread ();
|
||||||
|
CloseHandle (get_ttyp ()->fwd_done);
|
||||||
|
get_ttyp ()->fwd_done = NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2718,7 +2721,7 @@ fhandler_pty_slave::fixup_after_attach (bool native_maybe, int fd_set)
|
||||||
DWORD mode = ENABLE_PROCESSED_OUTPUT | ENABLE_WRAP_AT_EOL_OUTPUT;
|
DWORD mode = ENABLE_PROCESSED_OUTPUT | ENABLE_WRAP_AT_EOL_OUTPUT;
|
||||||
SetConsoleMode (get_output_handle (), mode);
|
SetConsoleMode (get_output_handle (), mode);
|
||||||
if (!get_ttyp ()->switch_to_pcon_out)
|
if (!get_ttyp ()->switch_to_pcon_out)
|
||||||
Sleep (20);
|
cygwait (get_ttyp ()->fwd_done, INFINITE);
|
||||||
if (get_ttyp ()->pcon_pid == 0 ||
|
if (get_ttyp ()->pcon_pid == 0 ||
|
||||||
kill (get_ttyp ()->pcon_pid, 0) != 0)
|
kill (get_ttyp ()->pcon_pid, 0) != 0)
|
||||||
get_ttyp ()->pcon_pid = myself->pid;
|
get_ttyp ()->pcon_pid = myself->pid;
|
||||||
|
@ -3000,11 +3003,14 @@ fhandler_pty_master::pty_master_fwd_thread ()
|
||||||
termios_printf ("Started.");
|
termios_printf ("Started.");
|
||||||
for (;;)
|
for (;;)
|
||||||
{
|
{
|
||||||
|
if (::bytes_available (rlen, from_slave) && rlen == 0)
|
||||||
|
SetEvent (get_ttyp ()->fwd_done);
|
||||||
if (!ReadFile (from_slave, outbuf, sizeof outbuf, &rlen, NULL))
|
if (!ReadFile (from_slave, outbuf, sizeof outbuf, &rlen, NULL))
|
||||||
{
|
{
|
||||||
termios_printf ("ReadFile for forwarding failed, %E");
|
termios_printf ("ReadFile for forwarding failed, %E");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
ResetEvent (get_ttyp ()->fwd_done);
|
||||||
ssize_t wlen = rlen;
|
ssize_t wlen = rlen;
|
||||||
char *ptr = outbuf;
|
char *ptr = outbuf;
|
||||||
if (get_pseudo_console ())
|
if (get_pseudo_console ())
|
||||||
|
@ -3365,6 +3371,7 @@ fhandler_pty_master::setup ()
|
||||||
errstr = "pty master forwarding thread";
|
errstr = "pty master forwarding thread";
|
||||||
goto err;
|
goto err;
|
||||||
}
|
}
|
||||||
|
get_ttyp ()->fwd_done = CreateEvent (&sec_none, true, false, NULL);
|
||||||
|
|
||||||
setup_pseudoconsole ();
|
setup_pseudoconsole ();
|
||||||
|
|
||||||
|
|
|
@ -245,6 +245,7 @@ tty::init ()
|
||||||
num_pcon_attached_slaves = 0;
|
num_pcon_attached_slaves = 0;
|
||||||
term_code_page = 0;
|
term_code_page = 0;
|
||||||
need_redraw_screen = false;
|
need_redraw_screen = false;
|
||||||
|
fwd_done = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
HANDLE
|
HANDLE
|
||||||
|
|
|
@ -106,6 +106,7 @@ private:
|
||||||
int num_pcon_attached_slaves;
|
int num_pcon_attached_slaves;
|
||||||
UINT term_code_page;
|
UINT term_code_page;
|
||||||
bool need_redraw_screen;
|
bool need_redraw_screen;
|
||||||
|
HANDLE fwd_done;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
HANDLE from_master () const { return _from_master; }
|
HANDLE from_master () const { return _from_master; }
|
||||||
|
|
Loading…
Reference in New Issue