diff options
author | kupries <kupries> | 2000-04-04 20:28:40 (GMT) |
---|---|---|
committer | kupries <kupries> | 2000-04-04 20:28:40 (GMT) |
commit | 654b797828a64252043684a8896212e371fbb59d (patch) | |
tree | 2d5993ba2241ee288fdaac5cde72d36fba00b349 /generic/tclThread.c | |
parent | 10736d4e37e044b5393fb9069608f7188ef0d9b3 (diff) | |
download | tcl-654b797828a64252043684a8896212e371fbb59d.zip tcl-654b797828a64252043684a8896212e371fbb59d.tar.gz tcl-654b797828a64252043684a8896212e371fbb59d.tar.bz2 |
2000-04-03 Andreas Kupries <a.kupries@westend.com>
* Overall change: Definition of public API's for the finalization
of conditions and mutexes. [Bug: 4199].
* generic/tclInt.h: Removed definitions of TclFinalizeMutex and
TclFinalizeCondition.
* generic/tcl.decls: Added declarations of Tcl_MutexFinalize and
Tcl_ConditionFinalize.
* generic/tclThread.c: Renamed TclFinalizeMutex to
Tcl_MutexFinalize. Renamed TclFinalizeCondition to
Tcl_ConditionFinalize.
* generic/tclNotify.c: Changed usage of TclFinalizeMutex to
Tcl_MutexFinalize.
* unix/tclUnixNotfy.c:
* generic/tclThreadTest.c: Changed usages of TclFinalizeCondition to
Tcl_ConditionFinalize.
* generic/tcl.h: Added empty macros for Tcl_MutexFinalize and
Tcl_ConditionFinalize, to be used when the core is compiled
without threads.
* doc/Thread.3: Added description the new API's.
Diffstat (limited to 'generic/tclThread.c')
-rw-r--r-- | generic/tclThread.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/generic/tclThread.c b/generic/tclThread.c index a192f43..69142ae 100644 --- a/generic/tclThread.c +++ b/generic/tclThread.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclThread.c,v 1.3 1999/08/10 17:35:19 redman Exp $ + * RCS: @(#) $Id: tclThread.c,v 1.4 2000/04/04 20:28:43 kupries Exp $ */ #include "tclInt.h" @@ -271,7 +271,7 @@ TclRememberMutex(mutexPtr) /* *---------------------------------------------------------------------- * - * TclFinalizeMutex + * Tcl_MutexFinalize * * Finalize a single mutex and remove it from the * list of remembered objects. @@ -286,7 +286,7 @@ TclRememberMutex(mutexPtr) */ void -TclFinalizeMutex(mutexPtr) +Tcl_MutexFinalize(mutexPtr) Tcl_Mutex *mutexPtr; { #ifdef TCL_THREADS @@ -344,7 +344,7 @@ TclRememberCondition(condPtr) /* *---------------------------------------------------------------------- * - * TclFinalizeCondition + * Tcl_ConditionFinalize * * Finalize a single condition variable and remove it from the * list of remembered objects. @@ -359,7 +359,7 @@ TclRememberCondition(condPtr) */ void -TclFinalizeCondition(condPtr) +Tcl_ConditionFinalize(condPtr) Tcl_Condition *condPtr; { #ifdef TCL_THREADS @@ -411,7 +411,7 @@ TclFinalizeThreadData() /* *---------------------------------------------------------------------- * - * TclFinalizeSyncronization -- + * TclFinalizeSynchronization -- * * This procedure cleans up all synchronization objects: * mutexes, condition variables, and thread-local storage. |