summaryrefslogtreecommitdiffstats
path: root/generic/tclInt.h
diff options
context:
space:
mode:
authorvasiljevic <zv@archiware.com>2004-06-22 11:55:31 (GMT)
committervasiljevic <zv@archiware.com>2004-06-22 11:55:31 (GMT)
commitb9273c1f802ff63672d83bb1de3667270e663919 (patch)
tree46ef860f18e83f0c6be6b62f91faa2f921d51da5 /generic/tclInt.h
parent1dc7dd38fb40ca56d2e36b80e22ff1c1e68e0b0c (diff)
downloadtcl-b9273c1f802ff63672d83bb1de3667270e663919.zip
tcl-b9273c1f802ff63672d83bb1de3667270e663919.tar.gz
tcl-b9273c1f802ff63672d83bb1de3667270e663919.tar.bz2
Corrected Tcl Bug #770053
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r--generic/tclInt.h7
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));