diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2015-08-19 11:26:52 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2015-08-19 11:26:52 (GMT) |
commit | 50a8e5953a346e641c8c8b10fe1bb5010f26c1dc (patch) | |
tree | 2a421599a0603d3240ad97f01dd612a8877aad58 /unix | |
parent | 41107649bba64d4a990d11c0f5c0fa33ed86b66c (diff) | |
parent | e98db3a11856540e4e8e222fdb2fb6a0d16e8480 (diff) | |
download | tcl-50a8e5953a346e641c8c8b10fe1bb5010f26c1dc.zip tcl-50a8e5953a346e641c8c8b10fe1bb5010f26c1dc.tar.gz tcl-50a8e5953a346e641c8c8b10fe1bb5010f26c1dc.tar.bz2 |
merge trunk.
Remove now unused internal functions.
Diffstat (limited to 'unix')
-rw-r--r-- | unix/tclUnixThrd.c | 60 |
1 files changed, 4 insertions, 56 deletions
diff --git a/unix/tclUnixThrd.c b/unix/tclUnixThrd.c index 02f18b8..ae81c5f 100644 --- a/unix/tclUnixThrd.c +++ b/unix/tclUnixThrd.c @@ -385,58 +385,6 @@ TclpMasterUnlock(void) /* *---------------------------------------------------------------------- * - * TclpMutexLock - * - * This procedure is used to grab a lock that serializes locking - * another mutex. - * - * Results: - * None. - * - * Side effects: - * None. - * - *---------------------------------------------------------------------- - */ - -void -TclpMutexLock(void) -{ -#ifdef TCL_THREADS - pthread_mutex_lock(&mutexLock); -#endif -} - - -/* - *---------------------------------------------------------------------- - * - * TclpMutexUnlock - * - * This procedure is used to release a lock that serializes locking - * another mutex. - * - * Results: - * None. - * - * Side effects: - * None. - * - *---------------------------------------------------------------------- - */ - -void -TclpMutexUnlock(void) -{ -#ifdef TCL_THREADS - pthread_mutex_unlock(&mutexLock); -#endif -} - - -/* - *---------------------------------------------------------------------- - * * Tcl_GetAllocMutex * * This procedure returns a pointer to a statically initialized mutex for @@ -510,17 +458,17 @@ retry: MASTER_UNLOCK; } while (1) { - TclpMutexLock(); + pthread_mutex_lock(&mutexLock); pmutexPtr = *((pthread_mutex_t **)mutexPtr); if (pmutexPtr == NULL) { - TclpMutexUnlock(); + pthread_mutex_unlock(&mutexLock); goto retry; } if (pthread_mutex_trylock(pmutexPtr) == 0) { - TclpMutexUnlock(); + pthread_mutex_unlock(&mutexLock); return; } - TclpMutexUnlock(); + pthread_mutex_unlock(&mutexLock); /* * BUGBUG: All core and Thread package tests pass when usleep() * is used; however, the Thread package tests hang at |