diff options
author | vasiljevic <zv@archiware.com> | 2004-06-22 13:08:57 (GMT) |
---|---|---|
committer | vasiljevic <zv@archiware.com> | 2004-06-22 13:08:57 (GMT) |
commit | 46b6468bc248717205ebb258ae6af7287fa77d22 (patch) | |
tree | 4a186fef042b244b7baa23990f6ebda5fb241e00 /win/tclWinThrd.c | |
parent | a7d93e405d7c52890ac2b6451680ed32574c2f18 (diff) | |
download | tcl-46b6468bc248717205ebb258ae6af7287fa77d22.zip tcl-46b6468bc248717205ebb258ae6af7287fa77d22.tar.gz tcl-46b6468bc248717205ebb258ae6af7287fa77d22.tar.bz2 |
Integrated fix for Tcl Bug #770053 from core-8-4-branch
Diffstat (limited to 'win/tclWinThrd.c')
-rw-r--r-- | win/tclWinThrd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/win/tclWinThrd.c b/win/tclWinThrd.c index 88e2cda..1194fcc 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.30 2004/04/27 17:17:37 davygrvy Exp $ + * RCS: @(#) $Id: tclWinThrd.c,v 1.31 2004/06/22 13:09:01 vasiljevic Exp $ */ #include "tclWinInt.h" @@ -115,7 +115,7 @@ typedef struct WinCondition { /* *---------------------------------------------------------------------- * - * Tcl_CreateThread -- + * TclpThreadCreate -- * * This procedure creates a new thread. * @@ -130,7 +130,7 @@ typedef struct WinCondition { */ int -Tcl_CreateThread(idPtr, proc, clientData, stackSize, flags) +TclpThreadCreate(idPtr, proc, clientData, stackSize, flags) Tcl_ThreadId *idPtr; /* Return, the ID of the thread */ Tcl_ThreadCreateProc proc; /* Main() function of the thread */ ClientData clientData; /* The one argument to Main() */ |