diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2005-11-07 15:12:26 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2005-11-07 15:12:26 (GMT) |
commit | f3f11c1b443e594cd1abdec73ee15b97de6cb366 (patch) | |
tree | 82ae89d1febc068bc2d749ddfb8d58b23e109da3 /generic/tclThreadJoin.c | |
parent | 4462e6df57892c5bb60de231e237e45a9b57be39 (diff) | |
download | tcl-f3f11c1b443e594cd1abdec73ee15b97de6cb366.zip tcl-f3f11c1b443e594cd1abdec73ee15b97de6cb366.tar.gz tcl-f3f11c1b443e594cd1abdec73ee15b97de6cb366.tar.bz2 |
ANSIfy
Diffstat (limited to 'generic/tclThreadJoin.c')
-rw-r--r-- | generic/tclThreadJoin.c | 22 |
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; |