diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2003-12-16 11:34:44 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2003-12-16 11:34:44 (GMT) |
commit | 3933623394135029ff1d6e060fa065d75ff4a1b7 (patch) | |
tree | 70c2b076cbbb26c227dfffb0b32247fe9965504d /generic/tclThreadAlloc.c | |
parent | 2534806dbf61a11a318e1e999e4ab37863602e2e (diff) | |
download | tcl-3933623394135029ff1d6e060fa065d75ff4a1b7.zip tcl-3933623394135029ff1d6e060fa065d75ff4a1b7.tar.gz tcl-3933623394135029ff1d6e060fa065d75ff4a1b7.tar.bz2 |
Made a variable file-local for safety
Diffstat (limited to 'generic/tclThreadAlloc.c')
-rwxr-xr-x | generic/tclThreadAlloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclThreadAlloc.c b/generic/tclThreadAlloc.c index 5ff9449..f818495 100755 --- a/generic/tclThreadAlloc.c +++ b/generic/tclThreadAlloc.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclThreadAlloc.c,v 1.6 2003/05/10 04:28:59 mistachkin Exp $ + * RCS: @(#) $Id: tclThreadAlloc.c,v 1.7 2003/12/16 11:34:45 dkf Exp $ */ #if defined(TCL_THREADS) && defined(USE_THREAD_ALLOC) @@ -117,7 +117,7 @@ typedef struct Cache { * to avoid calculating them repeatedly. */ -struct binfo { +static struct { size_t blocksize; /* Bucket blocksize. */ int maxblocks; /* Max blocks before move to share. */ int nmove; /* Num blocks to move to share. */ |