1SIGPENDING(P) POSIX Programmer's Manual SIGPENDING(P)
2
3
4
6 sigpending - examine pending signals
7
9 #include <signal.h>
10
11 int sigpending(sigset_t *set);
12
13
15 The sigpending() function shall store, in the location referenced by
16 the set argument, the set of signals that are blocked from delivery to
17 the calling thread and that are pending on the process or the calling
18 thread.
19
21 Upon successful completion, sigpending() shall return 0; otherwise, -1
22 shall be returned and errno set to indicate the error.
23
25 No errors are defined.
26
27 The following sections are informative.
28
30 None.
31
33 None.
34
36 None.
37
39 None.
40
42 sigaddset() , sigdelset() , sigemptyset() , sigfillset() , sigismemā
43 ber() , sigprocmask() , the Base Definitions volume of
44 IEEE Std 1003.1-2001, <signal.h>
45
47 Portions of this text are reprinted and reproduced in electronic form
48 from IEEE Std 1003.1, 2003 Edition, Standard for Information Technology
49 -- Portable Operating System Interface (POSIX), The Open Group Base
50 Specifications Issue 6, Copyright (C) 2001-2003 by the Institute of
51 Electrical and Electronics Engineers, Inc and The Open Group. In the
52 event of any discrepancy between this version and the original IEEE and
53 The Open Group Standard, the original IEEE and The Open Group Standard
54 is the referee document. The original Standard can be obtained online
55 at http://www.opengroup.org/unix/online.html .
56
57
58
59IEEE/The Open Group 2003 SIGPENDING(P)