From cccaf0c2c82e78a72d69a4a50c872f308bed2f65 Mon Sep 17 00:00:00 2001 From: rpj Date: Sat, 23 Oct 2004 09:15:53 +0000 Subject: Mutex and Semaphore changes - considered alpha for now --- sem_timedwait.c | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) (limited to 'sem_timedwait.c') diff --git a/sem_timedwait.c b/sem_timedwait.c index 7282a97..d1d9d37 100644 --- a/sem_timedwait.c +++ b/sem_timedwait.c @@ -52,7 +52,7 @@ #include "semaphore.h" #include "implement.h" -static void +static inline void ptw32_sem_timedwait_cleanup (void * sem) { sem_t s = (sem_t) sem; @@ -60,6 +60,7 @@ ptw32_sem_timedwait_cleanup (void * sem) if (pthread_mutex_lock (&s->lock) == 0) { s->value++; + ReleaseSemaphore(s->sem, 1, 0); (void) pthread_mutex_unlock (&s->lock); } } @@ -211,13 +212,13 @@ sem_timedwait (sem_t * sem, const struct timespec *abstime) /* Must wait */ pthread_cleanup_push(ptw32_sem_timedwait_cleanup, s); result = pthreadCancelableTimedWait (s->sem, milliseconds); - pthread_cleanup_pop(0); - if (result != 0 - && pthread_mutex_lock (&s->lock) == 0) - { - s->value++; - (void) pthread_mutex_unlock (&s->lock); - } + /* + * Restore the semaphore counters if no longer waiting + * and not taking the semaphore. This will occur if the + * thread is cancelled while waiting, or the wake was + * not the result of a post event given to us, e.g. a timeout. + */ + pthread_cleanup_pop(result); } } -- cgit v1.2.3