diff options
author | andreas_kupries <andreas_kupries@noemail.net> | 2004-07-16 17:38:27 (GMT) |
---|---|---|
committer | andreas_kupries <andreas_kupries@noemail.net> | 2004-07-16 17:38:27 (GMT) |
commit | c666a645870cac1361b979fb4a670455866ae6f2 (patch) | |
tree | ef854d33b11c2ea8428b4af60ecdbe64dfe48791 /unix/tclUnixNotfy.c | |
parent | b5a8b92d41c9cabaf2709ffc96772630be46021f (diff) | |
download | tcl-c666a645870cac1361b979fb4a670455866ae6f2.zip tcl-c666a645870cac1361b979fb4a670455866ae6f2.tar.gz tcl-c666a645870cac1361b979fb4a670455866ae6f2.tar.bz2 |
* unix/tclUnixNotfy.c (NotifierThreadProc): Accepted Joe
Mistachkin's patch for [Tcl SF Bug 990500], properly closing the
notifier thread when its exits.
FossilOrigin-Name: e3d114f62335e9d3bb29ca35a59db213039b93bd
Diffstat (limited to 'unix/tclUnixNotfy.c')
-rw-r--r-- | unix/tclUnixNotfy.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/unix/tclUnixNotfy.c b/unix/tclUnixNotfy.c index 6c0a6ca..6e3cf45 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.16 2004/06/22 13:09:00 vasiljevic Exp $ + * RCS: @(#) $Id: tclUnixNotfy.c,v 1.17 2004/07/16 17:38:28 andreas_kupries Exp $ */ #include "tclInt.h" @@ -1030,5 +1030,7 @@ NotifierThreadProc(clientData) triggerPipe = -1; Tcl_ConditionNotify(¬ifierCV); Tcl_MutexUnlock(¬ifierMutex); + + TclpThreadExit (0); } #endif |