Query: sigpending
OS: freebsd
Section: 2
Links: freebsd man pages all man pages
Forums: unix linux community forum categories
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
SIGPENDING(2) BSD System Calls Manual SIGPENDING(2)NAMEsigpending -- get pending signalsLIBRARYStandard C Library (libc, -lc)SYNOPSIS#include <signal.h> int sigpending(sigset_t *set);DESCRIPTIONThe sigpending() system call returns a mask of the signals pending for delivery to the calling thread or the calling process in the location indicated by set. Signals may be pending because they are currently masked, or transiently before delivery (although the latter case is not normally detectable).RETURN VALUESThe sigpending() function returns the value 0 if successful; otherwise the value -1 is returned and the global variable errno is set to indi- cate the error.ERRORSThe sigpending() system call will fail if: [EFAULT] The set argument specified an invalid address.SEE ALSOsigaction(2), sigprocmask(2), sigsuspend(2), sigsetops(3)STANDARDSThe sigpending() system call is expected to conform to ISO/IEC 9945-1:1990 (``POSIX.1'').BSDSeptember 6, 2013 BSD
Related Man Pages |
---|
sigpending(2) - linux |
rt_sigpending(2) - centos |
sigpending(2) - centos |
sigpending(2) - sunos |
rt_sigpending(2) - x11r4 |
Similar Topics in the Unix Linux Community |
---|
Handling Signals in System Calls |