diff options
author | vasiljevic <zv@archiware.com> | 2004-06-22 11:55:31 (GMT) |
---|---|---|
committer | vasiljevic <zv@archiware.com> | 2004-06-22 11:55:31 (GMT) |
commit | b9273c1f802ff63672d83bb1de3667270e663919 (patch) | |
tree | 46ef860f18e83f0c6be6b62f91faa2f921d51da5 /win/tclWinThrd.c | |
parent | 1dc7dd38fb40ca56d2e36b80e22ff1c1e68e0b0c (diff) | |
download | tcl-b9273c1f802ff63672d83bb1de3667270e663919.zip tcl-b9273c1f802ff63672d83bb1de3667270e663919.tar.gz tcl-b9273c1f802ff63672d83bb1de3667270e663919.tar.bz2 |
Corrected Tcl Bug #770053
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 558cee4..f7fe507 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.24.2.5 2004/05/06 01:03:14 davygrvy Exp $ + * RCS: @(#) $Id: tclWinThrd.c,v 1.24.2.6 2004/06/22 11:55:36 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() */ |