summaryrefslogtreecommitdiff
path: root/linuxthreads/condvar.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-03-15 07:52:41 +0000
committerUlrich Drepper <drepper@redhat.com>2000-03-15 07:52:41 +0000
commit04366d5f822a135bec38390bd96db367ebd0931a (patch)
tree6ebc6e3959b4d0ac659923140b8331876a7b628b /linuxthreads/condvar.c
parent5d1415976fb392aac199c42a47bf453a86286da5 (diff)
Update.
2000-03-14 Ulrich Drepper <drepper@redhat.com> * sysdeps/unix/sysv/linux/alpha/ioperm.c (platform): Add entry for Nautilus. Patch by Soohoon Lee <soohoon.lee@alpha-processor.com>.
Diffstat (limited to 'linuxthreads/condvar.c')
-rw-r--r--linuxthreads/condvar.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/linuxthreads/condvar.c b/linuxthreads/condvar.c
index d1e91d228c..023e5c6884 100644
--- a/linuxthreads/condvar.c
+++ b/linuxthreads/condvar.c
@@ -143,6 +143,10 @@ pthread_cond_timedwait_relative_old(pthread_cond_t *cond,
sigjmp_buf jmpbuf;
pthread_extricate_if extr;
+ /* 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;
@@ -270,6 +274,10 @@ pthread_cond_timedwait_relative_new(pthread_cond_t *cond,
sigjmp_buf jmpbuf;
pthread_extricate_if extr;
+ /* Check whether the mutex is locked and owned by this thread. */
+ if (mutex->__m_owner != self)
+ return EINVAL;
+
already_canceled = 0;
was_signalled = 0;
@@ -384,10 +392,6 @@ 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);
}