summaryrefslogtreecommitdiffstats
path: root/mac
diff options
context:
space:
mode:
authorJoe Mistachkin <joe@mistachkin.com>2003-05-13 10:16:16 (GMT)
committerJoe Mistachkin <joe@mistachkin.com>2003-05-13 10:16:16 (GMT)
commit89e5a5f995907e072bff4bebc780df6ab8e4d55f (patch)
tree1f0a1e95565618ea475808d459aed5e188a41f47 /mac
parentabbcb0c269fc4339825f49ec99f9799d03f0340e (diff)
downloadtcl-89e5a5f995907e072bff4bebc780df6ab8e4d55f.zip
tcl-89e5a5f995907e072bff4bebc780df6ab8e4d55f.tar.gz
tcl-89e5a5f995907e072bff4bebc780df6ab8e4d55f.tar.bz2
fix for [Bug 732477]
Diffstat (limited to 'mac')
-rw-r--r--mac/tclMacThrd.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/mac/tclMacThrd.c b/mac/tclMacThrd.c
index 3fdafe3..dec4842 100644
--- a/mac/tclMacThrd.c
+++ b/mac/tclMacThrd.c
@@ -168,17 +168,17 @@ Tcl_CreateThread(idPtr, proc, clientData, stackSize, flags)
*/
int
-Tcl_JoinThread(id, result)
- Tcl_ThreadId id; /* Id of the thread to wait upon */
- int* result; /* Reference to the storage the result
- * of the thread we wait upon will be
- * written into. */
+Tcl_JoinThread(threadId, result)
+ Tcl_ThreadId threadId; /* Id of the thread to wait upon */
+ int* result; /* Reference to the storage the result
+ * of the thread we wait upon will be
+ * written into. */
{
if (!TclMacHaveThreads()) {
return TCL_ERROR;
}
- return TclJoinThread (id, result);
+ return TclJoinThread (threadId, result);
}
/*