From 9e91eb96b80e36cdf1380ce82b115f218daee4be Mon Sep 17 00:00:00 2001 From: kris Date: Tue, 30 Oct 2007 09:24:23 +0000 Subject: Adaptive mutexes should have the same deadlock detection properties that default (errorcheck) mutexes do. Noticed by: davidxu --- lib/libthr/thread/thr_mutex.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/libthr/thread/thr_mutex.c b/lib/libthr/thread/thr_mutex.c index 2cc3ce0..d743ca9 100644 --- a/lib/libthr/thread/thr_mutex.c +++ b/lib/libthr/thread/thr_mutex.c @@ -550,6 +550,7 @@ mutex_self_lock(pthread_mutex_t m, const struct timespec *abstime) switch (m->m_type) { case PTHREAD_MUTEX_ERRORCHECK: + case PTHREAD_MUTEX_ADAPTIVE_NP: if (abstime) { clock_gettime(CLOCK_REALTIME, &ts1); TIMESPEC_SUB(&ts2, abstime, &ts1); -- cgit v1.1