diff options
| author | Joe Mistachkin <joe@mistachkin.com> | 2015-05-17 18:03:15 (GMT) |
|---|---|---|
| committer | Joe Mistachkin <joe@mistachkin.com> | 2015-05-17 18:03:15 (GMT) |
| commit | 9a3b1b5c37b5ce29e037b18c4bae91a95d801808 (patch) | |
| tree | 3604f9fd49bb4908708f3547e2bebf85ff8fd645 /generic/tclInt.h | |
| parent | e26076cbc8c56bc7b5061c5b9a5a7115b0478d3b (diff) | |
| download | tcl-9a3b1b5c37b5ce29e037b18c4bae91a95d801808.zip tcl-9a3b1b5c37b5ce29e037b18c4bae91a95d801808.tar.gz tcl-9a3b1b5c37b5ce29e037b18c4bae91a95d801808.tar.bz2 | |
Draft fix for a potential race condition in the new Tcl_MutexUnlockAndFinalize API. Not yet tested.
Diffstat (limited to 'generic/tclInt.h')
| -rw-r--r-- | generic/tclInt.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index 3f84717..bcf2355 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -3059,6 +3059,8 @@ MODULE_SCOPE void TclpInitUnlock(void); MODULE_SCOPE Tcl_Obj * TclpObjListVolumes(void); MODULE_SCOPE void TclpMasterLock(void); MODULE_SCOPE void TclpMasterUnlock(void); +MODULE_SCOPE void TclpMutexLock(void); +MODULE_SCOPE void TclpMutexUnlock(void); MODULE_SCOPE int TclpMatchFiles(Tcl_Interp *interp, char *separators, Tcl_DString *dirPtr, char *pattern, char *tail); MODULE_SCOPE int TclpObjNormalizePath(Tcl_Interp *interp, |
