summaryrefslogtreecommitdiffstats
path: root/generic/tclIO.c
diff options
context:
space:
mode:
authorvasiljevic <vasiljevic@noemail.net>2005-10-13 21:01:41 (GMT)
committervasiljevic <vasiljevic@noemail.net>2005-10-13 21:01:41 (GMT)
commit9fd021850e7b1717f8d52011cdb19990132dcfcb (patch)
tree8b0bc256d2370745b74b9e1cb24bde5cb95174d5 /generic/tclIO.c
parent2271555a5ba721f3e34a86795df869601b3d765f (diff)
downloadtcl-9fd021850e7b1717f8d52011cdb19990132dcfcb.zip
tcl-9fd021850e7b1717f8d52011cdb19990132dcfcb.tar.gz
tcl-9fd021850e7b1717f8d52011cdb19990132dcfcb.tar.bz2
Added some more clarifying comments in Tcl_ClearChannelHandlers()
FossilOrigin-Name: 7910c8fdd83768eed4ba091a9436ca003a4a5e5c
Diffstat (limited to 'generic/tclIO.c')
-rw-r--r--generic/tclIO.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/generic/tclIO.c b/generic/tclIO.c
index 208fb69..e3abd8a 100644
--- a/generic/tclIO.c
+++ b/generic/tclIO.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: tclIO.c,v 1.61.2.13 2005/10/13 20:40:48 vasiljevic Exp $
+ * RCS: @(#) $Id: tclIO.c,v 1.61.2.14 2005/10/13 21:01:41 vasiljevic Exp $
*/
#include "tclInt.h"
@@ -2707,14 +2707,13 @@ Tcl_ClearChannelHandlers (channel)
* file-events still sitting in the event queue of the current thread.
* We deliberately do not call UpdateInterest() because this could
* re-schedule new events if the channel still needs to be flushed.
+ * This should happen all the time, but Linux 2.4 systems seem to lose
+ * the flush on close in some cases (socket-9.2 socket-11.13) if this is
+ * used, so restrict it to TCL_THREADS, where you can otherwise crash
+ * numerous systems. [Bug 1323992]
*/
statePtr->interestMask = 0;
-
- /*
- * TEMPORARILY DEFINED FOR THREADED BUILD ONLY. SEE SF BUG# 1323992
- */
-
#ifdef TCL_THREADS
(chanPtr->typePtr->watchProc)(chanPtr->instanceData, 0);
#endif