diff options
author | dkf <dkf@noemail.net> | 2005-06-01 09:37:57 (GMT) |
---|---|---|
committer | dkf <dkf@noemail.net> | 2005-06-01 09:37:57 (GMT) |
commit | 31a09bf8dccdc8a335fa73a581b0299cf0187382 (patch) | |
tree | e0f7290e722cd1cdeb7d36d3cac398292b2d8c87 /unix/tclUnixNotfy.c | |
parent | c82617b6c183b8d9150333ac2239a88cc9b76ebf (diff) | |
download | tcl-31a09bf8dccdc8a335fa73a581b0299cf0187382.zip tcl-31a09bf8dccdc8a335fa73a581b0299cf0187382.tar.gz tcl-31a09bf8dccdc8a335fa73a581b0299cf0187382.tar.bz2 |
Make the threaded build compile again...
FossilOrigin-Name: 745f7e4cf03030228bfd9b2515d606f31de43dbb
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"); } |