summaryrefslogtreecommitdiff
path: root/lib/libthr/thread/thr_mutex.c
diff options
context:
space:
mode:
authorMike Makonnen <mtm@FreeBSD.org>2003-07-03 13:28:53 +0000
committerMike Makonnen <mtm@FreeBSD.org>2003-07-03 13:28:53 +0000
commite921a3c976e6f2841902088af2af85448881ce48 (patch)
tree2c713b63854a634dd128726765c1adda8eaa7bd9 /lib/libthr/thread/thr_mutex.c
parent2e3c617921c99df6e405128eee9568fd4a43bb0d (diff)
Notes
Diffstat (limited to 'lib/libthr/thread/thr_mutex.c')
-rw-r--r--lib/libthr/thread/thr_mutex.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/libthr/thread/thr_mutex.c b/lib/libthr/thread/thr_mutex.c
index ee615c3648b5..e47fb60634e8 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);
}