From 46ae637c4ef03a921d4a06baf99219c6149a7d20 Mon Sep 17 00:00:00 2001 From: rpj Date: Sun, 15 May 2005 15:28:24 +0000 Subject: '' --- sem_init.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sem_init.c') 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; } -- cgit v1.2.3