summaryrefslogtreecommitdiff
path: root/sem_init.c
diff options
context:
space:
mode:
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;
}