aboutsummaryrefslogtreecommitdiff
path: root/linuxthreads/semaphore.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1998-12-29 12:07:10 +0000
committerUlrich Drepper <drepper@redhat.com>1998-12-29 12:07:10 +0000
commitc046e7a5a6007631882a7a1838fe804bc66882b9 (patch)
tree6b9834dccb8726d42c486271ba2b879d1d81e09d /linuxthreads/semaphore.c
parente4192acbca0d9c93e1a28e26e2be10a0924239c6 (diff)
downloadglibc-c046e7a5a6007631882a7a1838fe804bc66882b9.zip
glibc-c046e7a5a6007631882a7a1838fe804bc66882b9.tar.gz
glibc-c046e7a5a6007631882a7a1838fe804bc66882b9.tar.bz2
Update.
1998-12-29 Ulrich Drepper <drepper@cygnus.com> * semaphore.c (sem_trywait): Don't forget to unlock the semaphore lock. Patch by Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>.
Diffstat (limited to 'linuxthreads/semaphore.c')
-rw-r--r--linuxthreads/semaphore.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/linuxthreads/semaphore.c b/linuxthreads/semaphore.c
index cb23a71..eca68d2 100644
--- a/linuxthreads/semaphore.c
+++ b/linuxthreads/semaphore.c
@@ -77,6 +77,7 @@ int sem_trywait(sem_t * sem)
sem->sem_value--;
retval = 0;
}
+ __pthread_unlock((struct _pthread_fastlock *) &sem->sem_lock);
return retval;
}