1SIGDELSET(3P)              POSIX Programmer's Manual             SIGDELSET(3P)
2
3
4

PROLOG

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

NAME

12       sigdelset — delete a signal from a signal set
13

SYNOPSIS

15       #include <signal.h>
16
17       int sigdelset(sigset_t *set, int signo);
18

DESCRIPTION

20       The sigdelset() function deletes the  individual  signal  specified  by
21       signo from the signal set pointed to by set.
22
23       Applications  should 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

RETURN VALUE

32       Upon  successful  completion, sigdelset() shall return 0; otherwise, it
33       shall return -1 and set errno to indicate the error.
34

ERRORS

36       The sigdelset() function may fail if:
37
38       EINVAL The signo argument is not a valid signal number, or is an unsup‐
39              ported signal number.
40
41       The following sections are informative.
42

EXAMPLES

44       None.
45

APPLICATION USAGE

47       None.
48

RATIONALE

50       None.
51

FUTURE DIRECTIONS

53       None.
54

SEE ALSO

56       Section   2.4,   Signal   Concepts,   pthread_sigmask(),   sigaction(),
57       sigaddset(), 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                        SIGDELSET(3P)
Impressum