diff options
| author | donal.k.fellows@manchester.ac.uk <dkf> | 2005-08-05 23:56:21 (GMT) |
|---|---|---|
| committer | donal.k.fellows@manchester.ac.uk <dkf> | 2005-08-05 23:56:21 (GMT) |
| commit | fc1e68cd3799a40e9f554a2750fced20c532ae71 (patch) | |
| tree | dc4fa89e002ba5ff275c74bf4828d968e53a2f45 /generic/tclInt.h | |
| parent | 8b8a1f4d5386c8a4c3a905034d2890460e4646cb (diff) | |
| download | tcl-fc1e68cd3799a40e9f554a2750fced20c532ae71.zip tcl-fc1e68cd3799a40e9f554a2750fced20c532ae71.tar.gz tcl-fc1e68cd3799a40e9f554a2750fced20c532ae71.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.h | 12 |
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); /* *---------------------------------------------------------------- |
