diff --git a/winsup/cygwin/fhandler.h b/winsup/cygwin/fhandler.h index cd3e68733..8c2cc8c1d 100644 --- a/winsup/cygwin/fhandler.h +++ b/winsup/cygwin/fhandler.h @@ -2663,6 +2663,7 @@ public: bool to_be_read_from_pcon (void); void get_master_thread_param (master_thread_param_t *p); void get_master_fwd_thread_param (master_fwd_thread_param_t *p); + void set_mask_flusho (bool m) { get_ttyp ()->mask_flusho = m; } }; class fhandler_dev_null: public fhandler_base diff --git a/winsup/cygwin/fhandler_tty.cc b/winsup/cygwin/fhandler_tty.cc index 0c8c433d2..c41b9264d 100644 --- a/winsup/cygwin/fhandler_tty.cc +++ b/winsup/cygwin/fhandler_tty.cc @@ -612,8 +612,8 @@ fhandler_pty_master::process_slave_output (char *buf, size_t len, int pktmode_on rc = -1; goto out; } - /* DISCARD (FLUSHO) and tcflush can finish here. */ - if ((get_ttyp ()->ti.c_lflag & FLUSHO || !buf)) + /* tclush can finish here. */ + if (!buf) goto out; if (is_nonblocking ()) @@ -671,8 +671,9 @@ fhandler_pty_master::process_slave_output (char *buf, size_t len, int pktmode_on termios_printf ("bytes read %u", n); - if (get_ttyp ()->ti.c_lflag & FLUSHO || !buf) - continue; + if (!buf || ((get_ttyp ()->ti.c_lflag & FLUSHO) + && !get_ttyp ()->mask_flusho)) + continue; /* Discard read data */ memcpy (optr, outbuf, n); optr += n; @@ -691,6 +692,8 @@ fhandler_pty_master::process_slave_output (char *buf, size_t len, int pktmode_on } out: + if (buf) + set_mask_flusho (false); termios_printf ("returning %d", rc); return rc; } @@ -2285,7 +2288,7 @@ fhandler_pty_master::write (const void *ptr, size_t len) { ssize_t ret; char *p = (char *) ptr; - termios ti = tc ()->ti; + termios &ti = tc ()->ti; bg_check_types bg = bg_check (SIGTTOU); if (bg <= bg_eof) @@ -2442,7 +2445,7 @@ fhandler_pty_master::tcflush (int queue) if (queue == TCIFLUSH || queue == TCIOFLUSH) ret = process_slave_output (NULL, OUT_BUFFER_SIZE, 0); - else if (queue == TCIFLUSH || queue == TCIOFLUSH) + if (queue == TCOFLUSH || queue == TCIOFLUSH) { /* do nothing for now. */ } @@ -3178,6 +3181,8 @@ fhandler_pty_common::process_opost_output (HANDLE h, const void *ptr, { ssize_t towrite = len; BOOL res = TRUE; + if (ttyp->ti.c_lflag & FLUSHO) + return res; /* Discard write data */ while (towrite) { if (!is_echo) diff --git a/winsup/cygwin/select.cc b/winsup/cygwin/select.cc index a3377795d..8966d45ec 100644 --- a/winsup/cygwin/select.cc +++ b/winsup/cygwin/select.cc @@ -710,6 +710,11 @@ peek_pipe (select_record *s, bool from_select) } out: + if (fh->get_major () == DEV_PTYM_MAJOR) + { + fhandler_pty_master *fhm = (fhandler_pty_master *) fh; + fhm->set_mask_flusho (s->read_ready); + } h = fh->get_output_handle_cyg (); if (s->write_selected && dev != FH_PIPER) { diff --git a/winsup/cygwin/tty.cc b/winsup/cygwin/tty.cc index 7627cd6c7..eaab573e0 100644 --- a/winsup/cygwin/tty.cc +++ b/winsup/cygwin/tty.cc @@ -252,6 +252,7 @@ tty::init () req_xfer_input = false; pcon_input_state = to_cyg; last_sig = 0; + mask_flusho = false; } HANDLE diff --git a/winsup/cygwin/tty.h b/winsup/cygwin/tty.h index 4ef1e04c9..b74120416 100644 --- a/winsup/cygwin/tty.h +++ b/winsup/cygwin/tty.h @@ -130,6 +130,7 @@ private: bool master_is_running_as_service; bool req_xfer_input; xfer_dir pcon_input_state; + bool mask_flusho; public: HANDLE from_master () const { return _from_master; }