diff options
author | vasiljevic <zv@archiware.com> | 2004-06-22 13:08:57 (GMT) |
---|---|---|
committer | vasiljevic <zv@archiware.com> | 2004-06-22 13:08:57 (GMT) |
commit | 46b6468bc248717205ebb258ae6af7287fa77d22 (patch) | |
tree | 4a186fef042b244b7baa23990f6ebda5fb241e00 /generic/tclInt.h | |
parent | a7d93e405d7c52890ac2b6451680ed32574c2f18 (diff) | |
download | tcl-46b6468bc248717205ebb258ae6af7287fa77d22.zip tcl-46b6468bc248717205ebb258ae6af7287fa77d22.tar.gz tcl-46b6468bc248717205ebb258ae6af7287fa77d22.tar.bz2 |
Integrated fix for Tcl Bug #770053 from core-8-4-branch
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index 6723f03..6b16f7b 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -6,13 +6,13 @@ * Copyright (c) 1987-1993 The Regents of the University of California. * Copyright (c) 1993-1997 Lucent Technologies. * Copyright (c) 1994-1998 Sun Microsystems, Inc. - * Copyright (c) 1998-1999 by Scriptics Corporation. + * Copyright (c) 1998-19/99 by Scriptics Corporation. * Copyright (c) 2001, 2002 by Kevin B. Kenny. All rights reserved. * * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclInt.h,v 1.165 2004/06/18 20:38:01 dgp Exp $ + * RCS: @(#) $Id: tclInt.h,v 1.166 2004/06/22 13:08:59 vasiljevic Exp $ */ #ifndef _TCLINT @@ -1820,6 +1820,11 @@ EXTERN void TclpFinalizeCondition _ANSI_ARGS_(( EXTERN void TclpFinalizeMutex _ANSI_ARGS_((Tcl_Mutex *mutexPtr)); EXTERN void TclpFinalizeThreadData _ANSI_ARGS_(( Tcl_ThreadDataKey *keyPtr)); +EXTERN int TclpThreadCreate _ANSI_ARGS_(( + Tcl_ThreadId *idPtr, + Tcl_ThreadCreateProc proc, + ClientData clientData, + int stackSize, int flags)); EXTERN void TclpFinalizeThreadDataKey _ANSI_ARGS_(( Tcl_ThreadDataKey *keyPtr)); EXTERN char * TclpFindExecutable _ANSI_ARGS_(( |