diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2015-09-24 11:06:44 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2015-09-24 11:06:44 (GMT) |
| commit | faef5b981f8970b1e9210ac68ab9975918e6500c (patch) | |
| tree | 2ae41f24c9d29f6ca8124e305514a4dc07a62ace /generic/tclThread.c | |
| parent | daa0c940b864f45566deda0f3e5ec700a8aa62ee (diff) | |
| parent | 92b0e1240376f8353e5d7792183d1bb856698146 (diff) | |
| download | tcl-faef5b981f8970b1e9210ac68ab9975918e6500c.zip tcl-faef5b981f8970b1e9210ac68ab9975918e6500c.tar.gz tcl-faef5b981f8970b1e9210ac68ab9975918e6500c.tar.bz2 | |
Fix [5d170b5ca5e12743006d737c79f959f3efabc644|5d170b5ca5]: checkin 9f8b7bea5344f1b0 broke netbsd's thread notifier
Diffstat (limited to 'generic/tclThread.c')
| -rw-r--r-- | generic/tclThread.c | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/generic/tclThread.c b/generic/tclThread.c index 7882a48..198fa6a 100644 --- a/generic/tclThread.c +++ b/generic/tclThread.c @@ -284,45 +284,6 @@ Tcl_MutexFinalize( /* *---------------------------------------------------------------------- * - * TclMutexUnlockAndFinalize -- - * - * This procedure is invoked to unlock and then finalize a mutex. - * The mutex must have been locked by Tcl_MutexLock. It is also - * removed from the list of remembered objects. The mutex can no - * longer be used after calling this procedure. - * - * Results: - * None. - * - * Side effects: - * Remove the mutex from the list. - * - *---------------------------------------------------------------------- - */ - -void -TclMutexUnlockAndFinalize( - Tcl_Mutex *mutexPtr) -{ -#ifdef TCL_THREADS - Tcl_Mutex mutex; -#endif - TclpMasterLock(); - TclpMutexLock(); -#ifdef TCL_THREADS - mutex = *mutexPtr; - *mutexPtr = NULL; /* Force it to be created again. */ - Tcl_MutexUnlock(&mutex); - TclpFinalizeMutex(&mutex); -#endif - ForgetSyncObject(mutexPtr, &mutexRecord); - TclpMutexUnlock(); - TclpMasterUnlock(); -} - -/* - *---------------------------------------------------------------------- - * * TclRememberCondition * * Keep a list of condition variables used during finalization. |
