summaryrefslogtreecommitdiffstats
path: root/generic/tclEvent.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2023-05-23 16:03:29 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2023-05-23 16:03:29 (GMT)
commit2acd355f8dc8e75b3a63b7b1dc079ebccb3a2701 (patch)
tree7410995c34f762f6c920204b067e5ef2b4ea268b /generic/tclEvent.c
parentf3f254e8bab8854467fda3c5a2c48a640fb7687c (diff)
downloadtcl-2acd355f8dc8e75b3a63b7b1dc079ebccb3a2701.zip
tcl-2acd355f8dc8e75b3a63b7b1dc079ebccb3a2701.tar.gz
tcl-2acd355f8dc8e75b3a63b7b1dc079ebccb3a2701.tar.bz2
Give Tcl_CreateThread a TCL_HASH_TYPE (unsigned) stackSize parameter
Diffstat (limited to 'generic/tclEvent.c')
-rw-r--r--generic/tclEvent.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclEvent.c b/generic/tclEvent.c
index 41c8700..5501721 100644
--- a/generic/tclEvent.c
+++ b/generic/tclEvent.c
@@ -2060,7 +2060,7 @@ Tcl_CreateThread(
Tcl_ThreadId *idPtr, /* Return, the ID of the thread */
Tcl_ThreadCreateProc *proc, /* Main() function of the thread */
void *clientData, /* The one argument to Main() */
- Tcl_Size stackSize, /* Size of stack for the new thread */
+ TCL_HASH_TYPE stackSize, /* Size of stack for the new thread */
int flags) /* Flags controlling behaviour of the new
* thread. */
{