diff options
Diffstat (limited to 'lib/libpthread/thread/thr_cond.c')
-rw-r--r-- | lib/libpthread/thread/thr_cond.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/libpthread/thread/thr_cond.c b/lib/libpthread/thread/thr_cond.c index c6bffeb..537c264 100644 --- a/lib/libpthread/thread/thr_cond.c +++ b/lib/libpthread/thread/thr_cond.c @@ -373,6 +373,8 @@ _pthread_cond_timedwait(pthread_cond_t * cond, pthread_mutex_t * mutex, int unlock_mutex = 1; int seqno; + THR_ASSERT(curthread->locklevel == 0, + "cv_timedwait: locklevel is not zero!"); _thr_enter_cancellation_point(curthread); if (abstime == NULL || abstime->tv_sec < 0 || abstime->tv_nsec < 0 || @@ -575,6 +577,8 @@ _pthread_cond_signal(pthread_cond_t * cond) struct pthread *pthread; int rval = 0; + THR_ASSERT(curthread->locklevel == 0, + "cv_timedwait: locklevel is not zero!"); if (cond == NULL) rval = EINVAL; /* @@ -632,6 +636,8 @@ _pthread_cond_broadcast(pthread_cond_t * cond) struct pthread *pthread; int rval = 0; + THR_ASSERT(curthread->locklevel == 0, + "cv_timedwait: locklevel is not zero!"); if (cond == NULL) rval = EINVAL; /* |