summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixNotfy.c
diff options
context:
space:
mode:
authorvasiljevic <vasiljevic@noemail.net>2004-06-22 13:08:57 (GMT)
committervasiljevic <vasiljevic@noemail.net>2004-06-22 13:08:57 (GMT)
commit5578d6cc918dc251d9f512435cec34682837b389 (patch)
tree4a186fef042b244b7baa23990f6ebda5fb241e00 /unix/tclUnixNotfy.c
parent67fcf92c2bd82689a47efe7774028f1477186899 (diff)
downloadtcl-5578d6cc918dc251d9f512435cec34682837b389.zip
tcl-5578d6cc918dc251d9f512435cec34682837b389.tar.gz
tcl-5578d6cc918dc251d9f512435cec34682837b389.tar.bz2
Integrated fix for Tcl Bug #770053 from core-8-4-branch
FossilOrigin-Name: 9f739d40a187e9be66766e7e26473e8247fe608d
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 679da4d..6c0a6ca 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.15 2004/04/06 22:25:57 dgp Exp $
+ * RCS: @(#) $Id: tclUnixNotfy.c,v 1.16 2004/06/22 13:09:00 vasiljevic Exp $
*/
#include "tclInt.h"
@@ -207,7 +207,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) {
Tcl_Panic("Tcl_InitNotifier: unable to start notifier thread");
}