diff options
author | jilles <jilles@FreeBSD.org> | 2016-02-07 21:25:08 +0000 |
---|---|---|
committer | jilles <jilles@FreeBSD.org> | 2016-02-07 21:25:08 +0000 |
commit | 6e7e5621d9b1fb2151c468d82074db9c0e91b6ee (patch) | |
tree | d3f44b997edfeb24d2b77f66dbc7811580a77e3a /lib/libc | |
parent | 464f9f537837fb00673e5efebbb22ceb4ee5291c (diff) | |
download | FreeBSD-src-6e7e5621d9b1fb2151c468d82074db9c0e91b6ee.zip FreeBSD-src-6e7e5621d9b1fb2151c468d82074db9c0e91b6ee.tar.gz |
semget(2): Add missing [EINVAL] conditions.
PR: 206927
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/sys/semget.2 | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/lib/libc/sys/semget.2 b/lib/libc/sys/semget.2 index 945044d..debcf11 100644 --- a/lib/libc/sys/semget.2 +++ b/lib/libc/sys/semget.2 @@ -25,7 +25,7 @@ .\" .\" $FreeBSD$ .\" -.Dd September 12, 1995 +.Dd February 7, 2016 .Dt SEMGET 2 .Os .Sh NAME @@ -132,6 +132,17 @@ already exists. .It Bq Er EINVAL The number of semaphores requested exceeds the system imposed maximum per set. +.It Bq Er EINVAL +A semaphore set corresponding to +.Fa key +already exists and contains fewer semaphores than +.Fa nsems . +.It Bq Er EINVAL +A semaphore set corresponding to +.Fa key +does not exist and +.Fa nsems +is 0 or negative. .It Bq Er ENOSPC Insufficiently many semaphores are available. .It Bq Er ENOSPC |