summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixNotfy.c
diff options
context:
space:
mode:
authorvasiljevic <vasiljevic@noemail.net>2004-06-22 11:55:31 (GMT)
committervasiljevic <vasiljevic@noemail.net>2004-06-22 11:55:31 (GMT)
commit148462ad44a6a0d7457fbb20f67f82baf8871f0d (patch)
tree46ef860f18e83f0c6be6b62f91faa2f921d51da5 /unix/tclUnixNotfy.c
parent07c2cf1c37e9a1bb383ed2f2d869dcc2718e0e14 (diff)
downloadtcl-148462ad44a6a0d7457fbb20f67f82baf8871f0d.zip
tcl-148462ad44a6a0d7457fbb20f67f82baf8871f0d.tar.gz
tcl-148462ad44a6a0d7457fbb20f67f82baf8871f0d.tar.bz2
Corrected Tcl Bug #770053
FossilOrigin-Name: 450a52effb8bf251f092ba768fc18339ad6670e8
Diffstat (limited to 'unix/tclUnixNotfy.c')
-rw-r--r--unix/tclUnixNotfy.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tclUnixNotfy.c b/unix/tclUnixNotfy.c
index 0cad280..4449b47 100644
--- a/unix/tclUnixNotfy.c
+++ b/unix/tclUnixNotfy.c
@@ -11,7 +11,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclUnixNotfy.c,v 1.11.2.2 2003/07/16 22:09:48 hobbs Exp $
+ * RCS: @(#) $Id: tclUnixNotfy.c,v 1.11.2.3 2004/06/22 11:55:36 vasiljevic Exp $
*/
#include "tclInt.h"
@@ -208,7 +208,7 @@ Tcl_InitNotifier()
Tcl_MutexLock(&notifierMutex);
if (notifierCount == 0) {
- if (Tcl_CreateThread(&notifierThread, NotifierThreadProc, NULL,
+ if (TclpThreadCreate(&notifierThread, NotifierThreadProc, NULL,
TCL_THREAD_STACK_DEFAULT, TCL_THREAD_NOFLAGS) != TCL_OK) {
panic("Tcl_InitNotifier: unable to start notifier thread");
}