From fa35478dfe8e5268d7fb4da151147ab3de075bef Mon Sep 17 00:00:00 2001 From: mtm Date: Thu, 3 Jul 2003 13:28:53 +0000 Subject: _pthread_mutex_trylock() is another internal libc function that must block signals. --- lib/libthr/thread/thr_mutex.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'lib/libthr/thread/thr_mutex.c') diff --git a/lib/libthr/thread/thr_mutex.c b/lib/libthr/thread/thr_mutex.c index ee615c3..e47fb60 100644 --- a/lib/libthr/thread/thr_mutex.c +++ b/lib/libthr/thread/thr_mutex.c @@ -301,11 +301,16 @@ __pthread_mutex_trylock(pthread_mutex_t *mutex) return (ret); } +/* + * Libc internal. + */ int _pthread_mutex_trylock(pthread_mutex_t *mutex) { int ret = 0; + _thread_sigblock(); + if (mutex == NULL) ret = EINVAL; @@ -317,6 +322,9 @@ _pthread_mutex_trylock(pthread_mutex_t *mutex) (ret = mutex_init(mutex, 1)) == 0) ret = mutex_lock_common(mutex, 1); + if (ret != 0) + _thread_sigunblock(); + return (ret); } -- cgit v1.1