summaryrefslogtreecommitdiffstats
path: root/generic/tclInt.h
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2021-02-26 13:18:50 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2021-02-26 13:18:50 (GMT)
commita97e3eef6d56096f000475cef61a482b7cf21b73 (patch)
treefce6e6e9b546e9f6c83fdea70dae17a2752e558b /generic/tclInt.h
parentd134d35fef774db63654e487bb6303b79597b820 (diff)
downloadtcl-a97e3eef6d56096f000475cef61a482b7cf21b73.zip
tcl-a97e3eef6d56096f000475cef61a482b7cf21b73.tar.gz
tcl-a97e3eef6d56096f000475cef61a482b7cf21b73.tar.bz2
Increase some (internal) variables from int/long to long/size_t. On the way to allow bigger blocks in the threaded allocator
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r--generic/tclInt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h
index 27e818c..cc4f6a9 100644
--- a/generic/tclInt.h
+++ b/generic/tclInt.h
@@ -1804,7 +1804,7 @@ typedef struct AllocCache {
struct Cache *nextPtr; /* Linked list of cache entries. */
Tcl_ThreadId owner; /* Which thread's cache is this? */
Tcl_Obj *firstObjPtr; /* List of free objects for thread. */
- int numObjects; /* Number of objects for thread. */
+ size_t numObjects; /* Number of objects for thread. */
} AllocCache;
/*