diff options
author | davygrvy <davygrvy@pobox.com> | 2001-09-01 23:06:28 (GMT) |
---|---|---|
committer | davygrvy <davygrvy@pobox.com> | 2001-09-01 23:06:28 (GMT) |
commit | 29a70713dd9aa99e299e8a3ed13b3dc45d7334ec (patch) | |
tree | c05defd2e3e2109243a5bd2827717faab1ce5d8c | |
parent | 1e312e1c5be578a22ada7194f5dc9a813f4d3de3 (diff) | |
download | tcl-29a70713dd9aa99e299e8a3ed13b3dc45d7334ec.zip tcl-29a70713dd9aa99e299e8a3ed13b3dc45d7334ec.tar.gz tcl-29a70713dd9aa99e299e8a3ed13b3dc45d7334ec.tar.bz2 |
Added use of new private TclFinalizeAsync() found in tclAsync.c
-rw-r--r-- | generic/tclEvent.c | 3 | ||||
-rw-r--r-- | generic/tclInt.h | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/generic/tclEvent.c b/generic/tclEvent.c index bb0323e..00544e6 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.8.2.1 2001/04/03 22:54:37 hobbs Exp $ + * RCS: @(#) $Id: tclEvent.c,v 1.8.2.2 2001/09/01 23:06:28 davygrvy Exp $ */ #include "tclInt.h" @@ -907,6 +907,7 @@ Tcl_FinalizeThread() } TclFinalizeIOSubsystem(); TclFinalizeNotifier(); + TclFinalizeAsync(); /* * Blow away all thread local storage blocks. diff --git a/generic/tclInt.h b/generic/tclInt.h index 8ca0b86..887c7fc 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -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: tclInt.h,v 1.42.2.1 2001/04/03 22:54:37 hobbs Exp $ + * RCS: @(#) $Id: tclInt.h,v 1.42.2.2 2001/09/01 23:06:28 davygrvy Exp $ */ #ifndef _TCLINT @@ -1627,6 +1627,7 @@ EXTERN void TclFinalizeIOSubsystem _ANSI_ARGS_((void)); EXTERN void TclFinalizeLoad _ANSI_ARGS_((void)); EXTERN void TclFinalizeMemorySubsystem _ANSI_ARGS_((void)); EXTERN void TclFinalizeNotifier _ANSI_ARGS_((void)); +EXTERN void TclFinalizeAsync _ANSI_ARGS_((void)); EXTERN void TclFinalizeSynchronization _ANSI_ARGS_((void)); EXTERN void TclFinalizeThreadData _ANSI_ARGS_((void)); EXTERN void TclFindEncodings _ANSI_ARGS_((CONST char *argv0)); |