summaryrefslogtreecommitdiffstats
path: root/win/tclWinThrd.c
diff options
context:
space:
mode:
authordavygrvy <davygrvy@noemail.net>2001-09-03 01:28:41 (GMT)
committerdavygrvy <davygrvy@noemail.net>2001-09-03 01:28:41 (GMT)
commitd527e6185b6421ccc9cc092507aed53113c3f404 (patch)
tree22aa62d96f9ccc14c5634f1b4faf8416b6c6f436 /win/tclWinThrd.c
parentc4c946973573fec68fe0a10d5af2f4d29b2f1679 (diff)
downloadtcl-d527e6185b6421ccc9cc092507aed53113c3f404.zip
tcl-d527e6185b6421ccc9cc092507aed53113c3f404.tar.gz
tcl-d527e6185b6421ccc9cc092507aed53113c3f404.tar.bz2
* win/tclWinThrd.c: Moved FinalizeConditionEvent() proto to within
the main #ifdef TCL_THREADS block to avoid mingw warning about it being there but unused. FossilOrigin-Name: 7937aa216e4a66b6c71433f90075d2b516e78ff0
Diffstat (limited to 'win/tclWinThrd.c')
-rw-r--r--win/tclWinThrd.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/win/tclWinThrd.c b/win/tclWinThrd.c
index 3877729..dd82617 100644
--- a/win/tclWinThrd.c
+++ b/win/tclWinThrd.c
@@ -9,7 +9,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclWinThrd.c,v 1.15 2001/09/03 00:37:45 davygrvy Exp $
+ * RCS: @(#) $Id: tclWinThrd.c,v 1.16 2001/09/03 01:28:42 davygrvy Exp $
*/
#include "tclWinInt.h"
@@ -102,8 +102,6 @@ typedef struct WinCondition {
struct ThreadSpecificData *lastPtr;
} WinCondition;
-static void FinalizeConditionEvent(ClientData data);
-
/*
*----------------------------------------------------------------------
@@ -377,6 +375,10 @@ Tcl_GetAllocMutex()
#ifdef TCL_THREADS
+
+/* locally used prototype */
+static void FinalizeConditionEvent(ClientData data);
+
/*
*----------------------------------------------------------------------
*