summaryrefslogtreecommitdiff
path: root/sem_init.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_init.c
parentd4a22be21479c3b52e0ba2d3cfb150a98c426422 (diff)
''
Diffstat (limited to 'sem_init.c')
-rw-r--r--sem_init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sem_init.c b/sem_init.c
index 647ba18..27d8cbb 100644
--- a/sem_init.c
+++ b/sem_init.c
@@ -73,7 +73,7 @@ sem_init (sem_t * sem, int pshared, unsigned int value)
* -1 failed, error in errno
* ERRNO
* EINVAL 'sem' is not a valid semaphore, or
- * 'value' >= _POSIX_SEM_VALUE_MAX
+ * 'value' >= SEM_VALUE_MAX
* ENOMEM out of memory,
* ENOSPC a required resource has been exhausted,
* ENOSYS semaphores are not supported,
@@ -93,7 +93,7 @@ sem_init (sem_t * sem, int pshared, unsigned int value)
*/
result = EPERM;
}
- else if (value > (unsigned int)_POSIX_SEM_VALUE_MAX)
+ else if (value > (unsigned int)SEM_VALUE_MAX)
{
result = EINVAL;
}