diff options
author | vasiljevic <zv@archiware.com> | 2004-06-22 11:55:31 (GMT) |
---|---|---|
committer | vasiljevic <zv@archiware.com> | 2004-06-22 11:55:31 (GMT) |
commit | 9e41449b8a5bc1bfd98797950ff77225a919a817 (patch) | |
tree | 46ef860f18e83f0c6be6b62f91faa2f921d51da5 /generic/tclInt.h | |
parent | 30fdb3f31f7f5049800152384dc71d3413e88cac (diff) | |
download | tcl-9e41449b8a5bc1bfd98797950ff77225a919a817.zip tcl-9e41449b8a5bc1bfd98797950ff77225a919a817.tar.gz tcl-9e41449b8a5bc1bfd98797950ff77225a919a817.tar.bz2 |
Corrected Tcl Bug #770053
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index 7282343..95129b6 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -12,7 +12,7 @@ * 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.118.2.5 2004/05/06 01:02:58 davygrvy Exp $ + * RCS: @(#) $Id: tclInt.h,v 1.118.2.6 2004/06/22 11:55:35 vasiljevic Exp $ */ #ifndef _TCLINT @@ -1764,6 +1764,11 @@ EXTERN void TclpThreadDataKeyInit _ANSI_ARGS_(( Tcl_ThreadDataKey *keyPtr)); EXTERN void TclpThreadDataKeySet _ANSI_ARGS_(( Tcl_ThreadDataKey *keyPtr, VOID *data)); +EXTERN int TclpThreadCreate _ANSI_ARGS_(( + Tcl_ThreadId *idPtr, + Tcl_ThreadCreateProc proc, + ClientData clientData, + int stackSize, int flags)); EXTERN void TclpThreadExit _ANSI_ARGS_((int status)); EXTERN void TclRememberCondition _ANSI_ARGS_((Tcl_Condition *mutex)); EXTERN void TclRememberDataKey _ANSI_ARGS_((Tcl_ThreadDataKey *mutex)); |