]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
(pthread_cond_wait): Check whether mutex is owned by current thread
authorUlrich Drepper <drepper@redhat.com>
Wed, 15 Mar 2000 07:39:53 +0000 (07:39 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 15 Mar 2000 07:39:53 +0000 (07:39 +0000)
and return error if not.
(pthread_cond_timedwait): Likewise.

linuxthreads/condvar.c

index 6f1d758d89ae62df79baf7bd422596d6e96a560f..1d6e930b3552c8389c0af2a9ebe9276e8787e0e2 100644 (file)
@@ -77,6 +77,10 @@ int pthread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex)
   pthread_extricate_if extr;
   int already_canceled = 0;
 
+  /* Check whether the mutex is locked and owned by this thread.  */
+  if (mutex->__m_owner != self)
+    return EINVAL;
+
   /* Set up extrication interface */
   extr.pu_object = cond;
   extr.pu_extricate_func = cond_extricate_func;
@@ -377,6 +381,10 @@ pthread_cond_timedwait_relative_new(pthread_cond_t *cond,
 int pthread_cond_timedwait(pthread_cond_t *cond, pthread_mutex_t *mutex,
                            const struct timespec * abstime)
 {
+  /* Check whether the mutex is locked and owned by this thread.  */
+  if (mutex->__m_owner != self)
+    return EINVAL;
+
   /* Indirect call through pointer! */
   return pthread_cond_tw_rel(cond, mutex, abstime);
 }