summaryrefslogtreecommitdiffstats
path: root/generic/tclThreadJoin.c
diff options
context:
space:
mode:
authordkf <dkf@noemail.net>2005-11-07 15:12:26 (GMT)
committerdkf <dkf@noemail.net>2005-11-07 15:12:26 (GMT)
commitd25c5607231aee4782d13c3d5584af013f250e17 (patch)
tree82ae89d1febc068bc2d749ddfb8d58b23e109da3 /generic/tclThreadJoin.c
parent36e6b1c277065f1eb0a11af4c440dae037ce90b0 (diff)
downloadtcl-d25c5607231aee4782d13c3d5584af013f250e17.zip
tcl-d25c5607231aee4782d13c3d5584af013f250e17.tar.gz
tcl-d25c5607231aee4782d13c3d5584af013f250e17.tar.bz2
ANSIfy
FossilOrigin-Name: 611d25e47cc0ca4006b861534bc098fb11548f02
Diffstat (limited to 'generic/tclThreadJoin.c')
-rw-r--r--generic/tclThreadJoin.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/generic/tclThreadJoin.c b/generic/tclThreadJoin.c
index 7abcfcc..6a9304d 100644
--- a/generic/tclThreadJoin.c
+++ b/generic/tclThreadJoin.c
@@ -11,7 +11,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclThreadJoin.c,v 1.6 2005/07/19 22:45:35 dkf Exp $
+ * RCS: @(#) $Id: tclThreadJoin.c,v 1.7 2005/11/07 15:15:06 dkf Exp $
*/
#include "tclInt.h"
@@ -78,9 +78,9 @@ static JoinableThread* firstThreadPtr;
*/
int
-TclJoinThread(id, result)
- Tcl_ThreadId id; /* The id of the thread to wait upon. */
- int *result; /* Reference to a location for the result of
+TclJoinThread(
+ Tcl_ThreadId id, /* The id of the thread to wait upon. */
+ int *result) /* Reference to a location for the result of
* the thread we are waiting upon. */
{
JoinableThread *threadPtr;
@@ -226,9 +226,9 @@ TclJoinThread(id, result)
*----------------------------------------------------------------------
*/
-VOID
-TclRememberJoinableThread(id)
- Tcl_ThreadId id; /* The thread to remember as joinable */
+void
+TclRememberJoinableThread(
+ Tcl_ThreadId id) /* The thread to remember as joinable */
{
JoinableThread *threadPtr;
@@ -265,10 +265,10 @@ TclRememberJoinableThread(id)
*----------------------------------------------------------------------
*/
-VOID
-TclSignalExitThread(id,result)
- Tcl_ThreadId id; /* Id of the thread signaling its exit. */
- int result; /* The result from the thread. */
+void
+TclSignalExitThread(
+ Tcl_ThreadId id, /* Id of the thread signaling its exit. */
+ int result) /* The result from the thread. */
{
JoinableThread *threadPtr;