mbrtowc.3: SYNOPSIS: Use 'restrict' in prototypes
[man-pages.git] / man3 / sem_post.3
blob5435f23e6859089f208a647727ae040244a25ef2
1 .\" Copyright (C) 2006 Michael Kerrisk <mtk.manpages@gmail.com>
2 .\"
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.
7 .\"
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.
12 .\"
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
19 .\" professionally.
20 .\"
21 .\" Formatted or processed versions of this manual, if unaccompanied by
22 .\" the source, must acknowledge the copyright and authors of this work.
23 .\" %%%LICENSE_END
24 .\"
25 .TH SEM_POST 3 2020-08-13 "Linux" "Linux Programmer's Manual"
26 .SH NAME
27 sem_post \- unlock a semaphore
28 .SH SYNOPSIS
29 .nf
30 .B #include <semaphore.h>
31 .PP
32 .BI "int sem_post(sem_t *" sem );
33 .fi
34 .PP
35 Link with \fI\-pthread\fP.
36 .SH DESCRIPTION
37 .BR sem_post ()
38 increments (unlocks) the semaphore pointed to by
39 .IR sem .
40 If the semaphore's value consequently becomes greater than zero,
41 then another process or thread blocked in a
42 .BR sem_wait (3)
43 call will be woken up and proceed to lock the semaphore.
44 .SH RETURN VALUE
45 .BR sem_post ()
46 returns 0 on success;
47 on error, the value of the semaphore is left unchanged,
48 \-1 is returned, and
49 .I errno
50 is set to indicate the error.
51 .SH ERRORS
52 .TP
53 .B EINVAL
54 .I sem
55 is not a valid semaphore.
56 .TP
57 .B EOVERFLOW
58 .\" Added in POSIX.1-2008 TC1 (Austin Interpretation 213)
59 The maximum allowable value for a semaphore would be exceeded.
60 .SH ATTRIBUTES
61 For an explanation of the terms used in this section, see
62 .BR attributes (7).
63 .ad l
64 .nh
65 .TS
66 allbox;
67 lbx lb lb
68 l l l.
69 Interface       Attribute       Value
71 .BR sem_post ()
72 T}      Thread safety   MT-Safe
73 .TE
74 .hy
75 .ad
76 .sp 1
77 .SH CONFORMING TO
78 POSIX.1-2001.
79 .SH NOTES
80 .BR sem_post ()
81 is async-signal-safe:
82 it may be safely called within a signal handler.
83 .SH EXAMPLES
84 See
85 .BR sem_wait (3)
86 and
87 .BR shm_open (3).
88 .SH SEE ALSO
89 .BR sem_getvalue (3),
90 .BR sem_wait (3),
91 .BR sem_overview (7),
92 .BR signal\-safety (7)