summaryrefslogtreecommitdiffstats
path: root/generic/tclInt.h
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2005-08-05 23:56:21 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2005-08-05 23:56:21 (GMT)
commitcec53960ad6ccc1837a17837f95ded581a670c85 (patch)
treedc4fa89e002ba5ff275c74bf4828d968e53a2f45 /generic/tclInt.h
parentc9c8041ea67eccba3cbcedd91d78cddb2718555a (diff)
downloadtcl-cec53960ad6ccc1837a17837f95ded581a670c85.zip
tcl-cec53960ad6ccc1837a17837f95ded581a670c85.tar.gz
tcl-cec53960ad6ccc1837a17837f95ded581a670c85.tar.bz2
Stop exposing the thread storage guts. Non-core code should never touch it.
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r--generic/tclInt.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h
index bc7c0d8..82bf45e 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.243 2005/08/03 22:25:11 dgp Exp $
+ * RCS: @(#) $Id: tclInt.h,v 1.244 2005/08/05 23:56:29 dkf Exp $
*/
#ifndef _TCLINT
@@ -2171,6 +2171,16 @@ MODULE_SCOPE int TclpLoadMemory _ANSI_ARGS_((Tcl_Interp *interp,
Tcl_LoadHandle *loadHandle,
Tcl_FSUnloadFileProc **unloadProcPtr));
#endif
+MODULE_SCOPE void TclThreadStorageDataKeyInit(
+ Tcl_ThreadDataKey *keyPtr);
+MODULE_SCOPE void * TclThreadStorageDataKeyGet(Tcl_ThreadDataKey *keyPtr);
+MODULE_SCOPE void TclThreadStorageDataKeySet(Tcl_ThreadDataKey *keyPtr,
+ void *data);
+MODULE_SCOPE void TclFinalizeThreadStorage(void);
+MODULE_SCOPE void TclFinalizeThreadStorageData(
+ Tcl_ThreadDataKey *keyPtr);
+MODULE_SCOPE void TclFinalizeThreadStorageDataKey(
+ Tcl_ThreadDataKey *keyPtr);
/*
*----------------------------------------------------------------