diff options
author | vasiljevic <zv@archiware.com> | 2004-07-13 19:04:54 (GMT) |
---|---|---|
committer | vasiljevic <zv@archiware.com> | 2004-07-13 19:04:54 (GMT) |
commit | 7544eaff52bf7890c2e116fed4b1dfb654f769ed (patch) | |
tree | a7d46d3c36198ea75f38e44b44f0ad6465ea00ba /generic | |
parent | 942f234d4870b465504b7a6ec70339f64a9ae69e (diff) | |
download | tcl-7544eaff52bf7890c2e116fed4b1dfb654f769ed.zip tcl-7544eaff52bf7890c2e116fed4b1dfb654f769ed.tar.gz tcl-7544eaff52bf7890c2e116fed4b1dfb654f769ed.tar.bz2 |
Fixed broken build on Windows caused by missing TCL_THREAD_CREATE_RETURN
in NewThreadProc(). This is backported from head. Thnx to Kevin Kenny for
spotting this.
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tclEvent.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/generic/tclEvent.c b/generic/tclEvent.c index c6d7d65..e75da52 100644 --- a/generic/tclEvent.c +++ b/generic/tclEvent.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: tclEvent.c,v 1.28.2.4 2004/06/22 11:55:35 vasiljevic Exp $ + * RCS: @(#) $Id: tclEvent.c,v 1.28.2.5 2004/07/13 19:04:54 vasiljevic Exp $ */ #include "tclInt.h" @@ -1195,6 +1195,8 @@ NewThreadProc(ClientData clientData) TclInitNotifier(); (*threadProc)(threadClientData); + + TCL_THREAD_CREATE_RETURN; } #endif /* |