diff options
author | davygrvy <davygrvy@pobox.com> | 2001-09-03 01:28:42 (GMT) |
---|---|---|
committer | davygrvy <davygrvy@pobox.com> | 2001-09-03 01:28:42 (GMT) |
commit | 1c5c362b0cae2f96968ed8243a904837fbae2eb4 (patch) | |
tree | 22aa62d96f9ccc14c5634f1b4faf8416b6c6f436 /win/tclWinThrd.c | |
parent | 8f3f616e8652c58ed507b5a096ad51b17fe5cf95 (diff) | |
download | tcl-1c5c362b0cae2f96968ed8243a904837fbae2eb4.zip tcl-1c5c362b0cae2f96968ed8243a904837fbae2eb4.tar.gz tcl-1c5c362b0cae2f96968ed8243a904837fbae2eb4.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.
Diffstat (limited to 'win/tclWinThrd.c')
-rw-r--r-- | win/tclWinThrd.c | 8 |
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); + /* *---------------------------------------------------------------------- * |