diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2015-09-24 10:54:07 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2015-09-24 10:54:07 (GMT) |
commit | 2101ef45be45e0aa88d3e8c9725df9ca92309fe9 (patch) | |
tree | 3552bbb539fdc3bd92e752345c554eeee27d648b /unix/tclUnixThrd.c | |
parent | 61ad28e5b697aee8b22a823efd9333905ce1e787 (diff) | |
parent | 0f2b1bbb2e2b5d7c124d12df2e73a90c119390a4 (diff) | |
download | tcl-2101ef45be45e0aa88d3e8c9725df9ca92309fe9.zip tcl-2101ef45be45e0aa88d3e8c9725df9ca92309fe9.tar.gz tcl-2101ef45be45e0aa88d3e8c9725df9ca92309fe9.tar.bz2 |
Fix [5d170b5ca5e12743006d737c79f959f3efabc644|5d170b5ca5]: checkin 9f8b7bea5344f1b0 broke netbsd's thread notifier
Diffstat (limited to 'unix/tclUnixThrd.c')
-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 18b419f..e8ad182 100644 --- a/unix/tclUnixThrd.c +++ b/unix/tclUnixThrd.c @@ -477,58 +477,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 @@ -602,17 +550,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 |