]> git.ipfire.org Git - thirdparty/man-pages.git/blobdiff - man2/semget.2
sched_setattr.2: Minor tweaks to Claudio Scordino's patch
[thirdparty/man-pages.git] / man2 / semget.2
index 48a7483c055848f10294b46ba487519c1f0a4423..957449a7b1fe4b32adeef2c85999919d9b675325 100644 (file)
@@ -1,5 +1,6 @@
 .\" Copyright 1993 Giorgio Ciucci (giorgio@crcc.it)
 .\"
+.\" %%%LICENSE_START(VERBATIM)
 .\" Permission is granted to make and distribute verbatim copies of this
 .\" manual provided the copyright notice and this permission notice are
 .\" preserved on all copies.
@@ -19,6 +20,7 @@
 .\"
 .\" Formatted or processed versions of this manual, if unaccompanied by
 .\" the source, must acknowledge the copyright and authors of this work.
+.\" %%%LICENSE_END
 .\"
 .\" Modified Tue Oct 22 17:54:56 1996 by Eric S. Raymond <esr@thyrsus.com>
 .\" Modified 1 Jan 2002, Martin Schulze <joey@infodrom.org>
 .\"    Rewrote BUGS note about semget()'s failure to initialize
 .\"            semaphore values
 .\"
-.TH SEMGET 2 2012-05-31 "Linux" "Linux Programmer's Manual"
+.TH SEMGET 2 2018-04-30 "Linux" "Linux Programmer's Manual"
 .SH NAME
-semget \- get a semaphore set identifier
+semget \- get a System V semaphore set identifier
 .SH SYNOPSIS
 .nf
 .B #include <sys/types.h>
 .B #include <sys/ipc.h>
 .B #include <sys/sem.h>
 .fi
-.sp
+.PP
 .BI "int semget(key_t " key ,
 .BI "int " nsems ,
 .BI "int " semflg );
 .SH DESCRIPTION
 The
 .BR semget ()
-system call returns the semaphore set identifier
+system call returns the System\ V semaphore set identifier
 associated with the argument
 .IR key .
+It may be used either to obtain the identifier of a previously created
+semaphore set (when
+.I semflg
+is zero and
+.I key
+does not have the value
+.BR IPC_PRIVATE ),
+or to create a new set.
+.PP
 A new set of
 .I nsems
 semaphores is created if
@@ -95,16 +106,6 @@ argument of
 not meaningful for semaphores, and write permissions mean permission
 to alter semaphore values).
 .PP
-The values of the semaphores in a newly created set are indeterminate.
-(POSIX.1-2001 is explicit on this point.)
-Although Linux, like many other implementations,
-initializes the semaphore values to 0,
-a portable application cannot rely on this:
-it should explicitly initialize the semaphores to the desired values.
-.\" In truth, every one of the many implementations that I've tested sets
-.\" the values to zero, but I suppose there is/was some obscure
-.\" implementation out there that does not.
-.PP
 When creating a new semaphore set,
 .BR semget ()
 initializes the set's associated data structure,
@@ -143,7 +144,7 @@ The argument
 can be 0
 (a don't care)
 when a semaphore set is not being created.
-Otherwise
+Otherwise,
 .I nsems
 must be greater than 0
 and less than or equal to the maximum number of semaphores per semaphore set
@@ -154,12 +155,12 @@ verified.
 .\" and a check is made to see if it is marked for destruction.
 .SH RETURN VALUE
 If successful, the return value will be the semaphore set identifier
-(a nonnegative integer), otherwise \-1
+(a nonnegative integer), otherwise, \-1
 is returned, with
 .I errno
 indicating the error.
 .SH ERRORS
-On failure
+On failure,
 .I errno
 will be set to one of the following:
 .TP
@@ -169,17 +170,16 @@ A semaphore set exists for
 but the calling process does not have permission to access the set,
 and does not have the
 .B CAP_IPC_OWNER
-capability.
+capability in the user namespace that governs its IPC namespace.
 .TP
 .B EEXIST
-A semaphore set exists for
-.I key
-and
-.I semflg
-specified both
 .B IPC_CREAT
 and
-.BR IPC_EXCL .
+.BR IPC_EXCL
+were specified in
+.IR semflg ,
+but a semaphore set already exists for
+.IR key .
 .\" .TP
 .\" .B EIDRM
 .\" The semaphore set is marked to be deleted.
@@ -188,10 +188,12 @@ and
 .I nsems
 is less than 0 or greater than the limit on the number
 of semaphores per semaphore set
-.RB ( SEMMSL ),
-or a semaphore set corresponding to
+.RB ( SEMMSL ).
+.TP
+.B EINVAL
+A semaphore set corresponding to
 .I key
-already exists, and
+already exists, but
 .I nsems
 is larger than the number of semaphores in that set.
 .TP
@@ -231,64 +233,85 @@ Applications intended to be portable to such old systems may need
 to include these header files.
 .\" Like Linux, the FreeBSD man pages still document
 .\" the inclusion of these header files.
-
+.PP
 .B IPC_PRIVATE
 isn't a flag field but a
 .I key_t
 type.
 If this special value is used for
 .IR key ,
-the system call ignores everything but the least significant 9 bits of
+the system call ignores all but the least significant 9 bits of
 .I semflg
 and creates a new semaphore set (on success).
+.\"
+.SS Semaphore initialization
+The values of the semaphores in a newly created set are indeterminate.
+(POSIX.1-2001 and POSIX.1-2008 are explicit on this point,
+although POSIX.1-2008 notes that a future version of the standard
+may require an implementation to initialize the semaphores to 0.)
+Although Linux, like many other implementations,
+initializes the semaphore values to 0,
+a portable application cannot rely on this:
+it should explicitly initialize the semaphores to the desired values.
+.\" In truth, every one of the many implementations that I've tested sets
+.\" the values to zero, but I suppose there is/was some obscure
+.\" implementation out there that does not.
 .PP
+Initialization can be done using
+.BR semctl (2)
+.B SETVAL
+or
+.B SETALL
+operation.
+Where multiple peers do not know who will be the first to
+initialize the set, checking for a nonzero
+.I sem_otime
+in the associated data structure retrieved by a
+.BR semctl (2)
+.B IPC_STAT
+operation can be used to avoid races.
+.\"
+.SS Semaphore limits
 The following limits on semaphore set resources affect the
 .BR semget ()
 call:
 .TP
 .B SEMMNI
-System wide maximum number of semaphore sets: policy dependent
-(on Linux, this limit can be read and modified via the fourth field of
-.IR /proc/sys/kernel/sem ).
+System-wide limit on the number of semaphore sets.
+On Linux systems before version 3.19,
+the default value for this limit was 128.
+Since Linux 3.19,
+.\" commit e843e7d2c88b7db107a86bd2c7145dc715c058f4
+the default value is 32,000.
+On Linux, this limit can be read and modified via the fourth field of
+.IR /proc/sys/kernel/sem .
 .\" This /proc file is not available in Linux 2.2 and earlier -- MTK
 .TP
 .B SEMMSL
-Maximum number of semaphores per semid: implementation dependent
-(on Linux, this limit can be read and modified via the first field of
-.IR /proc/sys/kernel/sem ).
+Maximum number of semaphores per semaphore ID.
+On Linux systems before version 3.19,
+the default value for this limit was 250.
+Since Linux 3.19,
+.\" commit e843e7d2c88b7db107a86bd2c7145dc715c058f4
+the default value is 32,000.
+On Linux, this limit can be read and modified via the first field of
+.IR /proc/sys/kernel/sem .
 .TP
 .B SEMMNS
-System wide maximum number of semaphores: policy dependent
+System-wide limit on the number of semaphores: policy dependent
 (on Linux, this limit can be read and modified via the second field of
 .IR /proc/sys/kernel/sem ).
-Values greater than
-.B SEMMSL * SEMMNI
-makes it irrelevant.
+Note that the number of semaphores system-wide
+is also limited by the product of
+.B SEMMSL
+and
+.BR SEMMNI .
 .SH BUGS
 The name choice
 .B IPC_PRIVATE
 was perhaps unfortunate,
 .B IPC_NEW
 would more clearly show its function.
-.LP
-The semaphores in a set are not initialized by
-.BR semget ().
-.\" In fact they are initialized to zero on Linux, but POSIX.1-2001
-.\" does not specify this, and we can't portably rely on it.
-In order to initialize the semaphores,
-.BR semctl (2)
-must be used to perform a
-.B SETVAL
-or a
-.B SETALL
-operation on the semaphore set.
-(Where multiple peers do not know who will be the first to
-initialize the set, checking for a nonzero
-.I sem_otime
-in the associated data structure retrieved by a
-.BR semctl (2)
-.B IPC_STAT
-operation can be used to avoid races.)
 .SH SEE ALSO
 .BR semctl (2),
 .BR semop (2),