summaryrefslogtreecommitdiff
path: root/sem_post_multiple.c
diff options
context:
space:
mode:
authorrpj <rpj>2005-05-16 15:42:44 +0000
committerrpj <rpj>2005-05-16 15:42:44 +0000
commita824c43d3f20fc5722c5fd8f0f942f632b961723 (patch)
treee33174f1e54bcb5dffa3fb16be69713f4cc497c0 /sem_post_multiple.c
parent08e2916eb07fb75b2907032e2418316bf980d945 (diff)
''
Diffstat (limited to 'sem_post_multiple.c')
-rw-r--r--sem_post_multiple.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sem_post_multiple.c b/sem_post_multiple.c
index 42ea2f4..fa950bd 100644
--- a/sem_post_multiple.c
+++ b/sem_post_multiple.c
@@ -86,7 +86,7 @@ sem_post_multiple (sem_t * sem, int count)
}
else if ((result = pthread_mutex_lock (&s->lock)) == 0)
{
- if (s->value <= (_POSIX_SEM_VALUE_MAX - count))
+ if (s->value <= (SEM_VALUE_MAX - count))
{
waiters = -s->value;
s->value += count;