sigpending (2) Linux Manual Page
NAME sigpending, rt_sigpending – examine pending signals SYNOPSIS #include <signal.h> int sigpending(sigset_t *set); Feature Test Macro Requirements for glibc (see feature_test_macros(7)): sigpending(): _POSIX_C_SOURCE DESCRIPTION sigpending() returns the set of signals that are pending for delivery to the calling thread (i.e., the signals which have been raised while blocked). The mask of pending signals is returned…
