1SIGFILLSET(P) POSIX Programmer's Manual SIGFILLSET(P)
2
3
4
6 sigfillset - initialize and fill a signal set
7
9 #include <signal.h>
10
11 int sigfillset(sigset_t *set);
12
13
15 The sigfillset() function shall initialize the signal set pointed to by
16 set, such that all signals defined in this volume of
17 IEEE Std 1003.1-2001 are included.
18
20 Upon successful completion, sigfillset() shall return 0; otherwise, it
21 shall return -1 and set errno to indicate the error.
22
24 No errors are defined.
25
26 The following sections are informative.
27
29 None.
30
32 None.
33
35 Refer to sigemptyset() .
36
38 None.
39
41 Signal Concepts , sigaction() , sigaddset() , sigdelset() , sigempty‐
42 set() , sigismember() , sigpending() , sigprocmask() , sigsuspend() ,
43 the Base Definitions volume of IEEE Std 1003.1-2001, <signal.h>
44
46 Portions of this text are reprinted and reproduced in electronic form
47 from IEEE Std 1003.1, 2003 Edition, Standard for Information Technology
48 -- Portable Operating System Interface (POSIX), The Open Group Base
49 Specifications Issue 6, Copyright (C) 2001-2003 by the Institute of
50 Electrical and Electronics Engineers, Inc and The Open Group. In the
51 event of any discrepancy between this version and the original IEEE and
52 The Open Group Standard, the original IEEE and The Open Group Standard
53 is the referee document. The original Standard can be obtained online
54 at http://www.opengroup.org/unix/online.html .
55
56
57
58IEEE/The Open Group 2003 SIGFILLSET(P)