diff options
| author | Kevin B Kenny <kennykb@acm.org> | 2004-06-22 19:41:23 (GMT) |
|---|---|---|
| committer | Kevin B Kenny <kennykb@acm.org> | 2004-06-22 19:41:23 (GMT) |
| commit | 8c89323e6d64c00976d517bea411fbbbc364838a (patch) | |
| tree | 67d8c9f94010fad42ffec1e4e158d305ba60f6cf /generic/tclEvent.c | |
| parent | bd064a3646e3b1fc471e23b68f128e844ade655c (diff) | |
| download | tcl-8c89323e6d64c00976d517bea411fbbbc364838a.zip tcl-8c89323e6d64c00976d517bea411fbbbc364838a.tar.gz tcl-8c89323e6d64c00976d517bea411fbbbc364838a.tar.bz2 | |
* generic/tclEvent.c (NewThreadProc): Fixed broken build on
Windows caused by missing TCL_THREAD_CREATE_RETURN.
* tests/stack.test (stack-3.1): Corrected nuisance error in
threaded builds.
Diffstat (limited to 'generic/tclEvent.c')
| -rw-r--r-- | generic/tclEvent.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/generic/tclEvent.c b/generic/tclEvent.c index 6148f84..69eac18 100644 --- a/generic/tclEvent.c +++ b/generic/tclEvent.c @@ -7,11 +7,12 @@ * * Copyright (c) 1990-1994 The Regents of the University of California. * Copyright (c) 1994-1998 Sun Microsystems, Inc. + * Copyright (c) 2004 by Zoran Vasiljevic. * * 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.38 2004/06/22 13:08:57 vasiljevic Exp $ + * RCS: @(#) $Id: tclEvent.c,v 1.39 2004/06/22 19:41:25 kennykb Exp $ */ #include "tclInt.h" @@ -1262,6 +1263,8 @@ NewThreadProc(ClientData clientData) TclInitNotifier(); (*threadProc)(threadClientData); + + TCL_THREAD_CREATE_RETURN; } #endif /* |
