summaryrefslogtreecommitdiff
path: root/semaphore.c
diff options
context:
space:
mode:
authorrpj <rpj>2001-07-03 06:01:01 +0000
committerrpj <rpj>2001-07-03 06:01:01 +0000
commite8f8484fa9721cd8d929e630dbcb584ad4ff091b (patch)
tree6f77a6a3c7486e8f5898701889aef8080a8b8d04 /semaphore.c
parent663a1af0674c37774d310541e9b30c60316f2055 (diff)
Undo a minor code change in condvar.c and insert comments
in instead.
Diffstat (limited to 'semaphore.c')
-rw-r--r--semaphore.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/semaphore.c b/semaphore.c
index ee9c8f6..f2210d4 100644
--- a/semaphore.c
+++ b/semaphore.c
@@ -475,7 +475,7 @@ sem_post_multiple (sem_t * sem, int count )
* pointer to an instance of sem_t
*
* count
- * counter, must be greater than or equal to zero.
+ * counter, must be greater than zero.
*
* DESCRIPTION
* This function posts multiple wakeups to a semaphore. If there
@@ -487,14 +487,14 @@ sem_post_multiple (sem_t * sem, int count )
* -1 failed, error in errno
* ERRNO
* EINVAL 'sem' is not a valid semaphore
- * or count is not greater than zero.
+ * or count is less than or equal to zero.
*
* ------------------------------------------------------
*/
{
int result = 0;
- if (sem == NULL || *sem == NULL || count < 0)
+ if (sem == NULL || *sem == NULL || count <= 0)
{
result = EINVAL;
}