diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2005-06-01 09:37:57 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2005-06-01 09:37:57 (GMT) |
commit | f1f50f7c10e4e06c7dd7e75798a1475c376b6269 (patch) | |
tree | e0f7290e722cd1cdeb7d36d3cac398292b2d8c87 /unix/tclUnixNotfy.c | |
parent | 01a6c3d17a2da39e709a5c11078d9aa33a5cbc43 (diff) | |
download | tcl-f1f50f7c10e4e06c7dd7e75798a1475c376b6269.zip tcl-f1f50f7c10e4e06c7dd7e75798a1475c376b6269.tar.gz tcl-f1f50f7c10e4e06c7dd7e75798a1475c376b6269.tar.bz2 |
Make the threaded build compile again...
Diffstat (limited to 'unix/tclUnixNotfy.c')
-rw-r--r-- | unix/tclUnixNotfy.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/unix/tclUnixNotfy.c b/unix/tclUnixNotfy.c index bd4f68f..1976433 100644 --- a/unix/tclUnixNotfy.c +++ b/unix/tclUnixNotfy.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: tclUnixNotfy.c,v 1.25 2005/05/31 11:37:46 vasiljevic Exp $ + * RCS: @(#) $Id: tclUnixNotfy.c,v 1.26 2005/06/01 09:38:05 dkf Exp $ */ #ifndef HAVE_COREFOUNDATION /* Darwin/Mac OS X CoreFoundation notifier @@ -273,7 +273,7 @@ Tcl_FinalizeNotifier(clientData) */ if (notifierCount == 0) { - int result; + int result, ignored; if (triggerPipe < 0) { Tcl_Panic("Tcl_FinalizeNotifier: notifier pipe not initialized"); } @@ -292,7 +292,7 @@ Tcl_FinalizeNotifier(clientData) close(triggerPipe); Tcl_ConditionWait(¬ifierCV, ¬ifierMutex, NULL); - result = Tcl_JoinThread(notifierThread); + result = Tcl_JoinThread(notifierThread, &ignored); if (result) { Tcl_Panic("Tcl_FinalizeNotifier: unable to join notifier thread"); } |