Blame man3/sem_init.3

Packit 7cfc04
'\" t
Packit 7cfc04
.\" Copyright (C) 2006 Michael Kerrisk <mtk.manpages@gmail.com>
Packit 7cfc04
.\"
Packit 7cfc04
.\" %%%LICENSE_START(VERBATIM)
Packit 7cfc04
.\" Permission is granted to make and distribute verbatim copies of this
Packit 7cfc04
.\" manual provided the copyright notice and this permission notice are
Packit 7cfc04
.\" preserved on all copies.
Packit 7cfc04
.\"
Packit 7cfc04
.\" Permission is granted to copy and distribute modified versions of this
Packit 7cfc04
.\" manual under the conditions for verbatim copying, provided that the
Packit 7cfc04
.\" entire resulting derived work is distributed under the terms of a
Packit 7cfc04
.\" permission notice identical to this one.
Packit 7cfc04
.\"
Packit 7cfc04
.\" Since the Linux kernel and libraries are constantly changing, this
Packit 7cfc04
.\" manual page may be incorrect or out-of-date.  The author(s) assume no
Packit 7cfc04
.\" responsibility for errors or omissions, or for damages resulting from
Packit 7cfc04
.\" the use of the information contained herein.  The author(s) may not
Packit 7cfc04
.\" have taken the same level of care in the production of this manual,
Packit 7cfc04
.\" which is licensed free of charge, as they might when working
Packit 7cfc04
.\" professionally.
Packit 7cfc04
.\"
Packit 7cfc04
.\" Formatted or processed versions of this manual, if unaccompanied by
Packit 7cfc04
.\" the source, must acknowledge the copyright and authors of this work.
Packit 7cfc04
.\" %%%LICENSE_END
Packit 7cfc04
.\"
Packit 7cfc04
.TH SEM_INIT 3 2017-09-15 "Linux" "Linux Programmer's Manual"
Packit 7cfc04
.SH NAME
Packit 7cfc04
sem_init \- initialize an unnamed semaphore
Packit 7cfc04
.SH SYNOPSIS
Packit 7cfc04
.nf
Packit 7cfc04
.B #include <semaphore.h>
Packit 7cfc04
.PP
Packit 7cfc04
.BI "int sem_init(sem_t *" sem ", int " pshared ", unsigned int " value );
Packit 7cfc04
.fi
Packit 7cfc04
.PP
Packit 7cfc04
Link with \fI\-pthread\fP.
Packit 7cfc04
.SH DESCRIPTION
Packit 7cfc04
.BR sem_init ()
Packit 7cfc04
initializes the unnamed semaphore at the address pointed to by
Packit 7cfc04
.IR sem .
Packit 7cfc04
The
Packit 7cfc04
.I value
Packit 7cfc04
argument specifies the initial value for the semaphore.
Packit 7cfc04
.PP
Packit 7cfc04
The
Packit 7cfc04
.I pshared
Packit 7cfc04
argument indicates whether this semaphore is to be shared
Packit 7cfc04
between the threads of a process, or between processes.
Packit 7cfc04
.PP
Packit 7cfc04
If
Packit 7cfc04
.I pshared
Packit 7cfc04
has the value 0,
Packit 7cfc04
then the semaphore is shared between the threads of a process,
Packit 7cfc04
and should be located at some address that is visible to all threads
Packit 7cfc04
(e.g., a global variable, or a variable allocated dynamically on
Packit 7cfc04
the heap).
Packit 7cfc04
.PP
Packit 7cfc04
If
Packit 7cfc04
.I pshared
Packit 7cfc04
is nonzero, then the semaphore is shared between processes,
Packit 7cfc04
and should be located in a region of shared memory (see
Packit 7cfc04
.BR shm_open (3),
Packit 7cfc04
.BR mmap (2),
Packit 7cfc04
and
Packit 7cfc04
.BR shmget (2)).
Packit 7cfc04
(Since a child created by
Packit 7cfc04
.BR fork (2)
Packit 7cfc04
inherits its parent's memory mappings, it can also access the semaphore.)
Packit 7cfc04
Any process that can access the shared memory region
Packit 7cfc04
can operate on the semaphore using
Packit 7cfc04
.BR sem_post (3),
Packit 7cfc04
.BR sem_wait (3),
Packit 7cfc04
and so on.
Packit 7cfc04
.PP
Packit 7cfc04
Initializing a semaphore that has already been initialized
Packit 7cfc04
results in undefined behavior.
Packit 7cfc04
.SH RETURN VALUE
Packit 7cfc04
.BR sem_init ()
Packit 7cfc04
returns 0 on success;
Packit 7cfc04
on error, \-1 is returned, and
Packit 7cfc04
.I errno
Packit 7cfc04
is set to indicate the error.
Packit 7cfc04
.SH ERRORS
Packit 7cfc04
.TP
Packit 7cfc04
.B EINVAL
Packit 7cfc04
.I value
Packit 7cfc04
exceeds
Packit 7cfc04
.BR SEM_VALUE_MAX .
Packit 7cfc04
.TP
Packit 7cfc04
.B ENOSYS
Packit 7cfc04
.I pshared
Packit 7cfc04
is nonzero,
Packit 7cfc04
but the system does not support process-shared semaphores (see
Packit 7cfc04
.BR sem_overview (7)).
Packit 7cfc04
.SH ATTRIBUTES
Packit 7cfc04
For an explanation of the terms used in this section, see
Packit 7cfc04
.BR attributes (7).
Packit 7cfc04
.TS
Packit 7cfc04
allbox;
Packit 7cfc04
lb lb lb
Packit 7cfc04
l l l.
Packit 7cfc04
Interface	Attribute	Value
Packit 7cfc04
T{
Packit 7cfc04
.BR sem_init ()
Packit 7cfc04
T}	Thread safety	MT-Safe
Packit 7cfc04
.TE
Packit 7cfc04
.SH CONFORMING TO
Packit 7cfc04
POSIX.1-2001.
Packit 7cfc04
.SH NOTES
Packit 7cfc04
Bizarrely, POSIX.1-2001 does not specify the value that should
Packit 7cfc04
be returned by a successful call to
Packit 7cfc04
.BR sem_init ().
Packit 7cfc04
POSIX.1-2008 rectifies this, specifying the zero return on success.
Packit 7cfc04
.SH SEE ALSO
Packit 7cfc04
.BR sem_destroy (3),
Packit 7cfc04
.BR sem_post (3),
Packit 7cfc04
.BR sem_wait (3),
Packit 7cfc04
.BR sem_overview (7)
Packit 7cfc04
.SH COLOPHON
Packit 7cfc04
This page is part of release 4.15 of the Linux
Packit 7cfc04
.I man-pages
Packit 7cfc04
project.
Packit 7cfc04
A description of the project,
Packit 7cfc04
information about reporting bugs,
Packit 7cfc04
and the latest version of this page,
Packit 7cfc04
can be found at
Packit 7cfc04
\%https://www.kernel.org/doc/man\-pages/.