diff options
| author | Joe Mistachkin <joe@mistachkin.com> | 2003-05-13 09:57:38 (GMT) |
|---|---|---|
| committer | Joe Mistachkin <joe@mistachkin.com> | 2003-05-13 09:57:38 (GMT) |
| commit | 9e78333604ee1fc0dbde33d876886a44f0f544e5 (patch) | |
| tree | 916fee9988e480bc11268aa83cd81b06c59ed51d /win/tclWinThrd.c | |
| parent | 7d7406792557a9e28681aea33893e74791b72bc3 (diff) | |
| download | tcl-9e78333604ee1fc0dbde33d876886a44f0f544e5.zip tcl-9e78333604ee1fc0dbde33d876886a44f0f544e5.tar.gz tcl-9e78333604ee1fc0dbde33d876886a44f0f544e5.tar.bz2 | |
fix for [Bug 732477]
Diffstat (limited to 'win/tclWinThrd.c')
| -rw-r--r-- | win/tclWinThrd.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/win/tclWinThrd.c b/win/tclWinThrd.c index b8c045e..208f066 100644 --- a/win/tclWinThrd.c +++ b/win/tclWinThrd.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclWinThrd.c,v 1.24.2.1 2003/04/25 20:02:39 andreas_kupries Exp $ + * RCS: @(#) $Id: tclWinThrd.c,v 1.24.2.2 2003/05/13 09:57:40 mistachkin Exp $ */ #include "tclWinInt.h" @@ -187,13 +187,13 @@ 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. */ { - return TclJoinThread (id, result); + return TclJoinThread (threadId, result); } /* |
