diff options
author | dgp <dgp@users.sourceforge.net> | 2002-07-21 17:03:00 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2002-07-21 17:03:00 (GMT) |
commit | 6a00bb0ff05f01579f3976bc1ea44902d455f9d7 (patch) | |
tree | 9b60832237624ef7ada41573f191df2cb4bc6983 /generic/tclIOUtil.c | |
parent | 1565e25fd0d4c5dee1908910a2a062560d81ed80 (diff) | |
download | tcl-6a00bb0ff05f01579f3976bc1ea44902d455f9d7.zip tcl-6a00bb0ff05f01579f3976bc1ea44902d455f9d7.tar.gz tcl-6a00bb0ff05f01579f3976bc1ea44902d455f9d7.tar.bz2 |
* Silence compiler warning. [Bug 584408]
Diffstat (limited to 'generic/tclIOUtil.c')
-rw-r--r-- | generic/tclIOUtil.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/generic/tclIOUtil.c b/generic/tclIOUtil.c index 242a692..c419727 100644 --- a/generic/tclIOUtil.c +++ b/generic/tclIOUtil.c @@ -17,7 +17,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclIOUtil.c,v 1.61 2002/07/20 01:01:41 vincentdarley Exp $ + * RCS: @(#) $Id: tclIOUtil.c,v 1.62 2002/07/21 17:03:00 dgp Exp $ */ #include "tclInt.h" @@ -455,7 +455,9 @@ static int filesystemIteratorsInProgress = 0; */ static int filesystemWantToModify = 0; +#ifdef TCL_THREADS static Tcl_Condition filesystemOkToModify = NULL; +#endif TCL_DECLARE_MUTEX(filesystemMutex) |