1 .\" Copyright 1993 Giorgio Ciucci (giorgio@crcc.it)
3 .\" %%%LICENSE_START(VERBATIM)
4 .\" Permission is granted to make and distribute verbatim copies of this
5 .\" manual provided the copyright notice and this permission notice are
6 .\" preserved on all copies.
8 .\" Permission is granted to copy and distribute modified versions of this
9 .\" manual under the conditions for verbatim copying, provided that the
10 .\" entire resulting derived work is distributed under the terms of a
11 .\" permission notice identical to this one.
13 .\" Since the Linux kernel and libraries are constantly changing, this
14 .\" manual page may be incorrect or out-of-date. The author(s) assume no
15 .\" responsibility for errors or omissions, or for damages resulting from
16 .\" the use of the information contained herein. The author(s) may not
17 .\" have taken the same level of care in the production of this manual,
18 .\" which is licensed free of charge, as they might when working
21 .\" Formatted or processed versions of this manual, if unaccompanied by
22 .\" the source, must acknowledge the copyright and authors of this work.
25 .\" Modified Tue Oct 22 17:54:56 1996 by Eric S. Raymond <esr@thyrsus.com>
26 .\" Modified 1 Jan 2002, Martin Schulze <joey@infodrom.org>
27 .\" Modified 4 Jan 2002, Michael Kerrisk <mtk.manpages@gmail.com>
28 .\" Modified, 27 May 2004, Michael Kerrisk <mtk.manpages@gmail.com>
29 .\" Added notes on capability requirements
30 .\" Modified, 11 Nov 2004, Michael Kerrisk <mtk.manpages@gmail.com>
31 .\" Language and formatting clean-ups
32 .\" Added notes on /proc files
33 .\" Rewrote BUGS note about semget()'s failure to initialize
36 .TH SEMGET 2 2018-04-30 "Linux" "Linux Programmer's Manual"
38 semget \- get a System V semaphore set identifier
41 .B #include <sys/types.h>
42 .B #include <sys/ipc.h>
43 .B #include <sys/sem.h>
46 .BI "int semget(key_t " key ,
52 system call returns the System\ V semaphore set identifier
53 associated with the argument
55 It may be used either to obtain the identifier of a previously created
60 does not have the value
62 or to create a new set.
66 semaphores is created if
70 or if no existing semaphore set is associated with
83 and a semaphore set already exists for
91 (This is analogous to the effect of the combination
96 Upon creation, the least significant 9 bits of the argument
98 define the permissions (for owner, group and others)
99 for the semaphore set.
100 These bits have the same format, and the same
105 (though the execute permissions are
106 not meaningful for semaphores, and write permissions mean permission
107 to alter semaphore values).
109 When creating a new semaphore set,
111 initializes the set's associated data structure,
120 are set to the effective user ID of the calling process.
125 are set to the effective group ID of the calling process.
127 The least significant 9 bits of
129 are set to the least significant 9 bits of
133 is set to the value of
140 is set to the current time.
146 when a semaphore set is not being created.
149 must be greater than 0
150 and less than or equal to the maximum number of semaphores per semaphore set
153 If the semaphore set already exists, the permissions are
155 .\" and a check is made to see if it is marked for destruction.
157 If successful, the return value will be the semaphore set identifier
158 (a nonnegative integer), otherwise, \-1
161 indicating the error.
165 will be set to one of the following:
168 A semaphore set exists for
170 but the calling process does not have permission to access the set,
171 and does not have the
173 capability in the user namespace that governs its IPC namespace.
181 but a semaphore set already exists for
185 .\" The semaphore set is marked to be deleted.
189 is less than 0 or greater than the limit on the number
190 of semaphores per semaphore set
194 A semaphore set corresponding to
198 is larger than the number of semaphores in that set.
201 No semaphore set exists for
209 A semaphore set has to be created but the system does not have
210 enough memory for the new data structure.
213 A semaphore set has to be created but the system limit for the maximum
214 number of semaphore sets
216 or the system wide maximum number of semaphores
221 .\" SVr4 documents additional error conditions EFBIG, E2BIG, EAGAIN,
228 isn't required on Linux or by any version of POSIX.
230 some old implementations required the inclusion of these header files,
231 and the SVID also documented their inclusion.
232 Applications intended to be portable to such old systems may need
233 to include these header files.
234 .\" Like Linux, the FreeBSD man pages still document
235 .\" the inclusion of these header files.
238 isn't a flag field but a
241 If this special value is used for
243 the system call ignores all but the least significant 9 bits of
245 and creates a new semaphore set (on success).
247 .SS Semaphore initialization
248 The values of the semaphores in a newly created set are indeterminate.
249 (POSIX.1-2001 and POSIX.1-2008 are explicit on this point,
250 although POSIX.1-2008 notes that a future version of the standard
251 may require an implementation to initialize the semaphores to 0.)
252 Although Linux, like many other implementations,
253 initializes the semaphore values to 0,
254 a portable application cannot rely on this:
255 it should explicitly initialize the semaphores to the desired values.
256 .\" In truth, every one of the many implementations that I've tested sets
257 .\" the values to zero, but I suppose there is/was some obscure
258 .\" implementation out there that does not.
260 Initialization can be done using
266 Where multiple peers do not know who will be the first to
267 initialize the set, checking for a nonzero
269 in the associated data structure retrieved by a
272 operation can be used to avoid races.
275 The following limits on semaphore set resources affect the
280 System-wide limit on the number of semaphore sets.
281 On Linux systems before version 3.19,
282 the default value for this limit was 128.
284 .\" commit e843e7d2c88b7db107a86bd2c7145dc715c058f4
285 the default value is 32,000.
286 On Linux, this limit can be read and modified via the fourth field of
287 .IR /proc/sys/kernel/sem .
288 .\" This /proc file is not available in Linux 2.2 and earlier -- MTK
291 Maximum number of semaphores per semaphore ID.
292 On Linux systems before version 3.19,
293 the default value for this limit was 250.
295 .\" commit e843e7d2c88b7db107a86bd2c7145dc715c058f4
296 the default value is 32,000.
297 On Linux, this limit can be read and modified via the first field of
298 .IR /proc/sys/kernel/sem .
301 System-wide limit on the number of semaphores: policy dependent
302 (on Linux, this limit can be read and modified via the second field of
303 .IR /proc/sys/kernel/sem ).
304 Note that the number of semaphores system-wide
305 is also limited by the product of
312 was perhaps unfortunate,
314 would more clearly show its function.
319 .BR capabilities (7),
320 .BR sem_overview (7),