summaryrefslogtreecommitdiff
path: root/sem_timedwait.c
diff options
context:
space:
mode:
authorrpj <rpj>2004-10-22 15:06:41 +0000
committerrpj <rpj>2004-10-22 15:06:41 +0000
commit045278e11b53fc1ad59945427feab1cd9275988f (patch)
treeda8570a7a8962d9563814c4910e8a9d5fb6fa685 /sem_timedwait.c
parentf84df26e12431bb9ecd07fbc52c804538635901f (diff)
Changes to mutexes and semaphores - considered alpha for now
Diffstat (limited to 'sem_timedwait.c')
-rw-r--r--sem_timedwait.c38
1 files changed, 30 insertions, 8 deletions
diff --git a/sem_timedwait.c b/sem_timedwait.c
index e7fa55c..7282a97 100644
--- a/sem_timedwait.c
+++ b/sem_timedwait.c
@@ -52,6 +52,17 @@
#include "semaphore.h"
#include "implement.h"
+static void
+ptw32_sem_timedwait_cleanup (void * sem)
+{
+ sem_t s = (sem_t) sem;
+
+ if (pthread_mutex_lock (&s->lock) == 0)
+ {
+ s->value++;
+ (void) pthread_mutex_unlock (&s->lock);
+ }
+}
int
sem_timedwait (sem_t * sem, const struct timespec *abstime)
@@ -94,6 +105,7 @@ sem_timedwait (sem_t * sem, const struct timespec *abstime)
*/
{
int result = 0;
+ sem_t s = *sem;
#ifdef NEED_FTIME
@@ -185,19 +197,29 @@ sem_timedwait (sem_t * sem, const struct timespec *abstime)
#ifdef NEED_SEM
- result = (pthreadCancelableTimedWait ((*sem)->event, milliseconds));
+ result = (pthreadCancelableTimedWait (s->event, milliseconds));
#else /* NEED_SEM */
- if (InterlockedDecrement((LPLONG) &(*sem)->value) < 0)
- {
- /* Must wait */
- result = pthreadCancelableTimedWait ((*sem)->sem, milliseconds);
- if (result != 0)
+ if ((result = pthread_mutex_lock (&s->lock)) == 0)
+ {
+ int v = --s->value;
+ (void) pthread_mutex_unlock (&s->lock);
+
+ if (v < 0)
{
- (void) InterlockedIncrement((LPLONG) &(*sem)->value);
+ /* 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);
+ }
}
- }
+ }
#endif