diff options
author | davygrvy <davygrvy@pobox.com> | 2001-08-30 07:50:18 (GMT) |
---|---|---|
committer | davygrvy <davygrvy@pobox.com> | 2001-08-30 07:50:18 (GMT) |
commit | 0d312be6885f036ff0654f64c2889ba806bcf07e (patch) | |
tree | 7d838c15cd14b38785a1fab0ded168b19b1f0e95 /generic/tclEvent.c | |
parent | fce8b6f68f556617c82dd0079a82f02e751e17db (diff) | |
download | tcl-0d312be6885f036ff0654f64c2889ba806bcf07e.zip tcl-0d312be6885f036ff0654f64c2889ba806bcf07e.tar.gz tcl-0d312be6885f036ff0654f64c2889ba806bcf07e.tar.bz2 |
* generic/tclAsync.c:
* generic/tclEvent.c:
* generic/tclInt.h: Improper cleanup of asyncMutex in tclAsync.c
repaired. TclFinalizeSynchronization() was trying to remove a
registered mutex that was dumped earlier when the TSD it was stored
in was cleared. This was only surfacing on *nix. Windows was being
masked by mutexes not actually being returned to the system! That
was repaired in a previous patch. Needed to add a private
TclFinalizeAsync() to tclAsync.c and called from Tcl_FinalizeThread().
Pheww.. Is this done yet?
[Bug: 414419] requested by Rob Ratcliff <rrr6399@futuretek.com>
Diffstat (limited to 'generic/tclEvent.c')
-rw-r--r-- | generic/tclEvent.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tclEvent.c b/generic/tclEvent.c index 4aae424..4d2337e 100644 --- a/generic/tclEvent.c +++ b/generic/tclEvent.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: tclEvent.c,v 1.11 2001/03/31 07:57:31 hobbs Exp $ + * RCS: @(#) $Id: tclEvent.c,v 1.12 2001/08/30 07:50:18 davygrvy Exp $ */ #include "tclInt.h" @@ -907,6 +907,7 @@ Tcl_FinalizeThread() } TclFinalizeIOSubsystem(); TclFinalizeNotifier(); + TclFinalizeAsync(); /* * Blow away all thread local storage blocks. |