diff options
author | hobbs <hobbs> | 2004-07-21 01:45:44 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2004-07-21 01:45:44 (GMT) |
commit | 4dcfe1cc24fd10bd3e184990a3b7f7c3042d6e03 (patch) | |
tree | a73f70550f592464825b855b97bcf3574735f983 /generic/tclInt.h | |
parent | b7baa5cf544d8865daa4745ad9616caabfedd664 (diff) | |
download | tcl-4dcfe1cc24fd10bd3e184990a3b7f7c3042d6e03.zip tcl-4dcfe1cc24fd10bd3e184990a3b7f7c3042d6e03.tar.gz tcl-4dcfe1cc24fd10bd3e184990a3b7f7c3042d6e03.tar.bz2 |
* generic/tclEvent.c: Correct threaded obj allocator to
* generic/tclInt.h: fully cleanup on exit and allow for
* generic/tclThreadAlloc.c: reinitialization. [Bug #736426]
* unix/tclUnixThrd.c: (mistachkin, kenny)
* win/tclWinThrd.c:
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index f3db00e..0c5d431 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.169 2004/07/21 00:42:38 kennykb Exp $ + * RCS: @(#) $Id: tclInt.h,v 1.170 2004/07/21 01:45:44 hobbs Exp $ */ #ifndef _TCLINT @@ -2363,6 +2363,8 @@ EXTERN void TclThreadFreeObj _ANSI_ARGS_((Tcl_Obj *)); EXTERN Tcl_Mutex *TclpNewAllocMutex _ANSI_ARGS_((void)); EXTERN void *TclpGetAllocCache _ANSI_ARGS_((void)); EXTERN void TclpSetAllocCache _ANSI_ARGS_((void *)); +EXTERN void TclFinalizeThreadAlloc _ANSI_ARGS_((void)); +EXTERN void TclpFreeAllocMutex _ANSI_ARGS_((Tcl_Mutex* mutex)); # define TclAllocObjStorage(objPtr) \ (objPtr) = TclThreadAllocObj() |