SIGPENDING(2) Linux Programmer's Manual SIGPENDING(2)

sigpending - examine pending signals

#include <signal.h>

int sigpending(sigset_t *set);

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 in set.

sigpending() returns 0 on success and -1 on error.

set points to memory which is not a valid part of the process address space.

sigsetops(3) for details on manipulating signal sets.

POSIX.1-2001.

kill(2), sigaction(2), signal(2), sigprocmask(2), sigsuspend(2), sigsetops(3), signal(7)

2005-09-15 Linux 2.6.13

Different Versions of this Page: