From 4f96ae699cb92dbc12ea7e3b8e27df029f655176 Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Sat, 30 Nov 2002 22:23:01 +0000 Subject: [PATCH] * fhandler_tty.cc (fhandler_pty_master::accept_input): Move read_retval assignment to prevent race condition. Remove read_retval from return statement. --- winsup/cygwin/ChangeLog | 6 ++++++ winsup/cygwin/fhandler_tty.cc | 13 +++++++++---- 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index e3642bf36..bec423b00 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,9 @@ +2002-11-29 Steve Osborn + + * fhandler_tty.cc (fhandler_pty_master::accept_input): Move + read_retval assignment to prevent race condition. Remove read_retval + from return statement. + 2002-11-29 Christopher Faylor * pinfo.h (winpids::set): Renamed from init. diff --git a/winsup/cygwin/fhandler_tty.cc b/winsup/cygwin/fhandler_tty.cc index ed1092776..dc0f0fceb 100644 --- a/winsup/cygwin/fhandler_tty.cc +++ b/winsup/cygwin/fhandler_tty.cc @@ -153,7 +153,6 @@ fhandler_pty_master::accept_input () rc = WaitForSingleObject (input_mutex, INFINITE); bytes_left = n = eat_readahead (-1); - get_ttyp ()->read_retval = 0; p = rabuf; if (n != 0) @@ -165,9 +164,12 @@ fhandler_pty_master::accept_input () if (!rc) { debug_printf ("error writing to pipe %E"); + get_ttyp ()->read_retval = -1; break; } - get_ttyp ()->read_retval += written; + else + get_ttyp ()->read_retval = 1; + p += written; bytes_left -= written; if (bytes_left > 0) @@ -181,10 +183,13 @@ fhandler_pty_master::accept_input () } } else - termios_printf ("sending EOF to slave"); + { + termios_printf ("sending EOF to slave"); + get_ttyp ()->read_retval = 0; + } SetEvent (input_available_event); ReleaseMutex (input_mutex); - return get_ttyp ()->read_retval; + return 1; } static DWORD WINAPI