signal.sigpending()
Examine the set of signals that are pending for delivery to the calling thread (i.e., the signals which have been raised while blocked). Return the set of the pending signals.
Availability: Unix (see the man page sigpending(2) for further information).
See also pause()
, pthread_sigmask()
and sigwait()
.
New in version 3.3.
Please login to continue.