summaryrefslogtreecommitdiffstats
path: root/unix
diff options
context:
space:
mode:
authorhobbs <hobbs>2002-03-05 20:55:36 (GMT)
committerhobbs <hobbs>2002-03-05 20:55:36 (GMT)
commitb17d98e52abd820fff10d021b1e2c69f799a83c2 (patch)
treee402796b761a6a320b29659b799e3b7636e56ea5 /unix
parent4b4e849d38b11af50fec36227778db8075b66b16 (diff)
downloadtcl-b17d98e52abd820fff10d021b1e2c69f799a83c2.zip
tcl-b17d98e52abd820fff10d021b1e2c69f799a83c2.tar.gz
tcl-b17d98e52abd820fff10d021b1e2c69f799a83c2.tar.bz2
* unix/tclUnixChan.c: initial remedy for [Bug #525783] flush
problem introduced by TIP #35. This may not satisfy true serial channels, but it restores the correct flushing of std* channels on exit.
Diffstat (limited to 'unix')
-rw-r--r--unix/tclUnixChan.c27
1 files changed, 23 insertions, 4 deletions
diff --git a/unix/tclUnixChan.c b/unix/tclUnixChan.c
index 0ed2a00..a77cf22 100644
--- a/unix/tclUnixChan.c
+++ b/unix/tclUnixChan.c
@@ -10,7 +10,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclUnixChan.c,v 1.31 2002/02/27 18:53:26 andreas_kupries Exp $
+ * RCS: @(#) $Id: tclUnixChan.c,v 1.32 2002/03/05 20:55:36 hobbs Exp $
*/
#include "tclInt.h" /* Internal definitions for Tcl. */
@@ -56,7 +56,22 @@
# define SETIOSTATE(fd, statePtr) tcsetattr((fd), TCSADRAIN, (statePtr))
# define GETCONTROL(fd, intPtr) ioctl((fd), TIOCMGET, (intPtr))
# define SETCONTROL(fd, intPtr) ioctl((fd), TIOCMSET, (intPtr))
+ /*
+ * TIP #35 introduced a different on exit flush/close behavior that
+ * doesn't work correctly with standard channels on all systems.
+ * The problem is tcflush throws away waiting channel data. This may
+ * be necessary for true serial channels that may block, but isn't
+ * correct in the standard case. This might be replaced with tcdrain
+ * instead, but that can block. For now, we revert to making this do
+ * nothing, and TtyOutputProc being the same old FileOutputProc.
+ * -- hobbs [Bug #525783]
+ */
+#define BAD_TIP35_FLUSH 0
+#if BAD_TIP35_FLUSH
# define TTYFLUSH(fd) tcflush((fd), TCIOFLUSH);
+#else
+# define TTYFLUSH(fd)
+#endif
# ifdef FIONREAD
# define GETREADQUEUE(fd, int) ioctl((fd), FIONREAD, &(int))
# elif defined(FIORDCHK)
@@ -293,7 +308,11 @@ static Tcl_ChannelType ttyChannelType = {
TCL_CHANNEL_VERSION_2, /* v2 channel */
TtyCloseProc, /* Close proc. */
FileInputProc, /* Input proc. */
+#if BAD_TIP35_FLUSH
TtyOutputProc, /* Output proc. */
+#else
+ FileOutputProc, /* Output proc. */
+#endif
NULL, /* Seek proc. */
TtySetOptionProc, /* Set option proc. */
TtyGetOptionProc, /* Get option proc. */
@@ -669,9 +688,9 @@ TtyCloseProc(instanceData, interp)
ClientData instanceData; /* Tty state. */
Tcl_Interp *interp; /* For error reporting - unused. */
{
- TtyState *ttyPtr;
-
- ttyPtr = (TtyState *) instanceData;
+#if BAD_TIP35_FLUSH
+ TtyState *ttyPtr = (TtyState *) instanceData;
+#endif
#ifdef TTYFLUSH
TTYFLUSH(ttyPtr->fs.fd);
#endif