summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixThrd.c
diff options
context:
space:
mode:
authorvasiljevic <zv@archiware.com>2004-06-22 11:55:31 (GMT)
committervasiljevic <zv@archiware.com>2004-06-22 11:55:31 (GMT)
commitb9273c1f802ff63672d83bb1de3667270e663919 (patch)
tree46ef860f18e83f0c6be6b62f91faa2f921d51da5 /unix/tclUnixThrd.c
parent1dc7dd38fb40ca56d2e36b80e22ff1c1e68e0b0c (diff)
downloadtcl-b9273c1f802ff63672d83bb1de3667270e663919.zip
tcl-b9273c1f802ff63672d83bb1de3667270e663919.tar.gz
tcl-b9273c1f802ff63672d83bb1de3667270e663919.tar.bz2
Corrected Tcl Bug #770053
Diffstat (limited to 'unix/tclUnixThrd.c')
-rw-r--r--unix/tclUnixThrd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tclUnixThrd.c b/unix/tclUnixThrd.c
index 04eacf4..78ca385 100644
--- a/unix/tclUnixThrd.c
+++ b/unix/tclUnixThrd.c
@@ -66,7 +66,7 @@ static pthread_mutex_t *allocLockPtr = &allocLock;
/*
*----------------------------------------------------------------------
*
- * Tcl_CreateThread --
+ * TclpThreadCreate --
*
* This procedure creates a new thread.
*
@@ -81,7 +81,7 @@ static pthread_mutex_t *allocLockPtr = &allocLock;
*/
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() */