summaryrefslogtreecommitdiffstats
path: root/mac
diff options
context:
space:
mode:
authormistachkin <mistachkin@noemail.net>2003-05-13 09:57:37 (GMT)
committermistachkin <mistachkin@noemail.net>2003-05-13 09:57:37 (GMT)
commitaba3b001297d152faa058672cf7cef6c6b1e7d8e (patch)
tree916fee9988e480bc11268aa83cd81b06c59ed51d /mac
parent77ba4d75773f4b81cc45e40b2e7c322a1158250c (diff)
downloadtcl-aba3b001297d152faa058672cf7cef6c6b1e7d8e.zip
tcl-aba3b001297d152faa058672cf7cef6c6b1e7d8e.tar.gz
tcl-aba3b001297d152faa058672cf7cef6c6b1e7d8e.tar.bz2
fix for [Bug 732477]
FossilOrigin-Name: 5cf8febf6428b69bc476d6cb420ffaae33f1c97f
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);
}
/*