diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2015-06-16 15:24:51 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2015-06-16 15:24:51 (GMT) |
commit | 61235a19fdbc4ccea9e122d0be34888ab92fc798 (patch) | |
tree | f9ed27e54ccf335ed3a7b3975210030637754b77 /generic/tclInt.h | |
parent | bd5043a0eea076716ef8b53a0985464965165bd9 (diff) | |
download | tcl-61235a19fdbc4ccea9e122d0be34888ab92fc798.zip tcl-61235a19fdbc4ccea9e122d0be34888ab92fc798.tar.gz tcl-61235a19fdbc4ccea9e122d0be34888ab92fc798.tar.bz2 |
Change Tcl_MutexUnlockAndFinalize() to internal function TclpMutexUnlockAndFinalize(). This does not require a TIP, and still should fix the reported bug.
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index 51d153b..5a8c9ca 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -3061,6 +3061,7 @@ MODULE_SCOPE void TclpMasterLock(void); MODULE_SCOPE void TclpMasterUnlock(void); MODULE_SCOPE void TclpMutexLock(void); MODULE_SCOPE void TclpMutexUnlock(void); +MODULE_SCOPE void TclpMutexUnlockAndFinalize(Tcl_Mutex *mutex); MODULE_SCOPE int TclpMatchFiles(Tcl_Interp *interp, char *separators, Tcl_DString *dirPtr, char *pattern, char *tail); MODULE_SCOPE int TclpObjNormalizePath(Tcl_Interp *interp, |