summaryrefslogtreecommitdiff
path: root/sem_post.c
diff options
context:
space:
mode:
authorrpj <rpj>2005-05-15 15:28:24 +0000
committerrpj <rpj>2005-05-15 15:28:24 +0000
commit46ae637c4ef03a921d4a06baf99219c6149a7d20 (patch)
treeca25c87f4285954f598d6f9b11b906d74b24750d /sem_post.c
parentd4a22be21479c3b52e0ba2d3cfb150a98c426422 (diff)
''
Diffstat (limited to 'sem_post.c')
-rw-r--r--sem_post.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sem_post.c b/sem_post.c
index 2edaecf..91f9755 100644
--- a/sem_post.c
+++ b/sem_post.c
@@ -82,7 +82,7 @@ sem_post (sem_t * sem)
}
else if ((result = pthread_mutex_lock (&s->lock)) == 0)
{
- if (s->value < _POSIX_SEM_VALUE_MAX)
+ if (s->value < SEM_VALUE_MAX)
{
#ifdef NEED_SEM
if (++s->value <= 0