summaryrefslogtreecommitdiffstats
path: root/generic/tclIOGT.c
diff options
context:
space:
mode:
authorhobbs <hobbs>2000-09-29 21:42:19 (GMT)
committerhobbs <hobbs>2000-09-29 21:42:19 (GMT)
commit74b07e6a7185a97a145ba0b88dba37b92b3ce416 (patch)
tree244846f603d2ac016d03eb556e0d1477f69bb5a0 /generic/tclIOGT.c
parent1f7eb28cc9b1d9e182532b419a700dc16d80c59e (diff)
downloadtcl-74b07e6a7185a97a145ba0b88dba37b92b3ce416.zip
tcl-74b07e6a7185a97a145ba0b88dba37b92b3ce416.tar.gz
tcl-74b07e6a7185a97a145ba0b88dba37b92b3ce416.tar.bz2
* generic/tclIOGT.c (FLUSH_DELAY): renamed DELAY define to
FLUSH_DELAY to avoid defn conflict using Tru64's cc.
Diffstat (limited to 'generic/tclIOGT.c')
-rw-r--r--generic/tclIOGT.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclIOGT.c b/generic/tclIOGT.c
index 70de14f..024dd34 100644
--- a/generic/tclIOGT.c
+++ b/generic/tclIOGT.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.
*
- * CVS: $Id: tclIOGT.c,v 1.2 2000/09/28 06:38:21 hobbs Exp $
+ * CVS: $Id: tclIOGT.c,v 1.3 2000/09/29 21:42:19 hobbs Exp $
*/
#include "tclInt.h"
@@ -171,7 +171,7 @@ struct ResultBuffer {
* out information waiting in buffers (fileevent support).
*/
-#define DELAY (5)
+#define FLUSH_DELAY (5)
/*
* Convenience macro to make some casts easier to use.
@@ -1046,7 +1046,7 @@ TransformWatchProc (instanceData, mask)
* to flush that.
*/
- dataPtr->timer = Tcl_CreateTimerHandler (DELAY,
+ dataPtr->timer = Tcl_CreateTimerHandler (FLUSH_DELAY,
TransformChannelHandlerTimer, (ClientData) dataPtr);
}
}