1SIGADDSET(3P) POSIX Programmer's Manual SIGADDSET(3P)
2
3
4
6 This manual page is part of the POSIX Programmer's Manual. The Linux
7 implementation of this interface may differ (consult the corresponding
8 Linux manual page for details of Linux behavior), or the interface may
9 not be implemented on Linux.
10
12 sigaddset — add a signal to a signal set
13
15 #include <signal.h>
16
17 int sigaddset(sigset_t *set, int signo);
18
20 The sigaddset() function adds the individual signal specified by the
21 signo to the signal set pointed to by set.
22
23 Applications shall call either sigemptyset() or sigfillset() at least
24 once for each object of type sigset_t prior to any other use of that
25 object. If such an object is not initialized in this way, but is none‐
26 theless supplied as an argument to any of pthread_sigmask(), sigac‐
27 tion(), sigaddset(), sigdelset(), sigismember(), sigpending(), sigproc‐
28 mask(), sigsuspend(), sigtimedwait(), sigwait(), or sigwaitinfo(), the
29 results are undefined.
30
32 Upon successful completion, sigaddset() shall return 0; otherwise, it
33 shall return -1 and set errno to indicate the error.
34
36 The sigaddset() function may fail if:
37
38 EINVAL The value of the signo argument is an invalid or unsupported
39 signal number.
40
41 The following sections are informative.
42
44 None.
45
47 None.
48
50 None.
51
53 None.
54
56 Section 2.4, Signal Concepts, pthread_sigmask(), sigaction(),
57 sigdelset(), sigemptyset(), sigfillset(), sigismember(), sigpending(),
58 sigsuspend()
59
60 The Base Definitions volume of POSIX.1‐2017, <signal.h>
61
63 Portions of this text are reprinted and reproduced in electronic form
64 from IEEE Std 1003.1-2017, Standard for Information Technology -- Por‐
65 table Operating System Interface (POSIX), The Open Group Base Specifi‐
66 cations Issue 7, 2018 Edition, Copyright (C) 2018 by the Institute of
67 Electrical and Electronics Engineers, Inc and The Open Group. In the
68 event of any discrepancy between this version and the original IEEE and
69 The Open Group Standard, the original IEEE and The Open Group Standard
70 is the referee document. The original Standard can be obtained online
71 at http://www.opengroup.org/unix/online.html .
72
73 Any typographical or formatting errors that appear in this page are
74 most likely to have been introduced during the conversion of the source
75 files to man page format. To report such errors, see https://www.ker‐
76 nel.org/doc/man-pages/reporting_bugs.html .
77
78
79
80IEEE/The Open Group 2017 SIGADDSET(3P)