sigpending(3) - Linux man page
Prolog
This manual page is part of the POSIX Programmer's Manual. The Linux implementation of this interface may differ (consult the corresponding Linux manual page for details of Linux behavior), or the interface may not be implemented on Linux.Name
sigpending - examine pending signalsSynopsis
#include <signal.h>
int sigpending(sigset_t *set);
Description
The sigpending() function shall store, in the location referenced by the set argument, the set of signals that are blocked from delivery to the calling thread and that are pending on the process or the calling thread.
Return Value
Upon successful completion, sigpending() shall return 0; otherwise, -1 shall be returned and errno set to indicate the error.
Errors
No errors are defined.
The following sections are informative.
Examples
None.
Application Usage
None.
Rationale
None.
Future Directions
None.
See Also
sigaddset(), sigdelset(), sigemptyset(), sigfillset(), sigismember(), sigprocmask(), the Base Definitions volume of IEEE Std 1003.1-2001, <signal.h>